blob: 96d1168dbeec106a50966ab8e856c3b88e90ae08 (
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
26
27
28
29
30
31
32
33
34
|
# Maintainer: Carlo Abelli <carlo@abelli.me>
pkgname=sirula
pkgver=1.0.0
pkgrel=2
pkgdesc="An app launcher for wayland"
arch=(x86_64)
url=https://github.com/DorianRudolph/sirula
license=(GPL-3.0-or-later)
depends=(gtk-layer-shell)
makedepends=(cargo)
source=("$pkgname-$pkgver.tar.gz::https://github.com/DorianRudolph/sirula/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=(311c2b3c1502a2e7c1c1ccd4c6a98f7fa387508cd2f3af23ea29b81f581292df)
prepare() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --frozen --release --all-features
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 -t "$pkgdir/usr/bin" "target/release/$pkgname"
}
|