summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b9c4f29cac50dc60153ab10647189bba7bbcdd67 (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
# Maintainer: KirottuM <arnovaara@gmail.com>
_pkgname="anyrun-plugin-applications"
pkgname="${_pkgname}-git"
pkgrel=1
pkgver=1
pkgdesc="Applications plugin for searching and running system-specific desktop entries."
arch=("x86_64")
url="https://github.com/anyrun-org/plugin-applications"
license=('GPL3')
depends=(anyrun)
makedepends=(git cargo)
source=("${_pkgname}::git+$url.git")
sha256sums=('SKIP')

pkgver() {
  cd "${_pkgname}"
  ( set -o pipefail
    git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

prepare() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}

build() {
  cd "${srcdir}/${_pkgname}"
  export RUSTUP_TOOLCHAIN=stable
  export CARGO_TARGET_DIR=target
  cargo build --frozen --release 
}

package() {
  cd "${_pkgname}"
  export RUSTUP_TOOLCHAIN=stable
  install -Dm0644 -t "$pkgdir/etc/anyrun/plugins/" "target/release/libapplications.so"
}