summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c7eedd0de5ab2953ecfce8b6681abaad7071a354 (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
35
36
37
38
39
40
41
42
43
# Maintainer: Jan Luca Oster <janluca.oster@proton.me>

pkgname=sirula-extended-git
_pkgname=sirula
pkgver=r87.ae9d39a
pkgrel=2
pkgdesc="An app launcher for wayland with cgroup support, close on unfocus and more smaller features"
arch=(x86_64)
url=https://github.com/jlo62/sirula
license=(GPL-3.0-or-later)
depends=(gtk-layer-shell)
makedepends=(cargo git)
provides=(sirula)
conflicts=(sirula)
source=("$_pkgname::git+https://github.com/jlo62/sirula.git")
sha256sums=(SKIP)

pkgver() {
  cd "$_pkgname"

  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
  cd "$_pkgname"

  export RUSTUP_TOOLCHAIN=stable
  cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}

build() {
  cd "$_pkgname"

  export RUSTUP_TOOLCHAIN=stable
  export CARGO_TARGET_DIR=target
  cargo build --frozen --release --all-features
}

package() {
  cd "$_pkgname"

  install -Dm755 -t "$pkgdir/usr/bin" "target/release/$_pkgname"
}