blob: ff480fc86203e41a76b7540f4db4f686ab349e25 (
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
|
# PKGBUILD created by using cargo-aur
pkgname='auswahl-git'
pkgver=0.1.1.7.g913e6f3
pkgrel=1
pkgdesc='A tool to create dmenu or rofi menus using a simple declaration syntax.'
arch=('any')
url='https://github.com/elkowar/Auswahl'
license=('Unlicense')
sha256sums=('SKIP')
makedepends=('rust' 'cargo' 'git')
source=('auswahl-git::git+https://github.com/elkowar/Auswahl')
pkgver() {
cd "$pkgname"
echo "$(grep '^version =' Cargo.toml|head -n1|cut -d\" -f2).$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)" | tr '-' '.'
}
build() {
cd $pkgname
cargo build --release --all-features --target-dir=target
}
check() {
cd $pkgname
cargo test --release --target-dir=target
}
package() {
cd $pkgname
install -Dm 755 target/release/auswahl -t "${pkgdir}/usr/bin"
install -Dm 755 LICENSE "${pkgdir}/usr/share/licenses/auswahl"
}
|