blob: b2a9a36d2143d5311322ab2efd476aeedf6af1cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
pkgname=lala-bar
pkgver=0.4.3
pkgrel=1.0
pkgdesc='A bar with layershell'
arch=('x86_64' 'aarch64')
url='https://github.com/Decodetalkers/lala-bar'
license=('MIT')
makedepends=('git' 'ninja' 'meson' 'rust')
source=("${pkgname}-v${pkgver}.tar.gz::https://github.com/Decodetalkers/lala-bar/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('8075d6caec917f1e4b59a86ccf2585fb14548a211be8502cf2574d9a069781e0')
options+=(!lto)
build() {
cd ${pkgname}-$pkgver
meson setup \
-Dprefix=/usr \
-Dbuildtype=release \
build
meson compile -C build
}
package() {
cd ${pkgname}-$pkgver
DESTDIR="$pkgdir" ninja -C build install
}
|