aboutsummaryrefslogtreecommitdiffstats
path: root/PKGBUILD
blob: 99f598efbb3e616883e1d14d7936278f383922d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pkgname=bk
pkgver=0.6.0_fork
pkgrel=1
pkgdesk="terminal epub reader (fork)"
arch=('i686' 'x86_64')
url="https://github.com/aeosynth/bk"
license=('MIT')
makedepends=('rust')
source=()

build() {
	cd ..
	cargo build
}

package() {
	cd ..
	install -D -t "$pkgdir/usr/bin" target/debug/bk
	strip -x --strip-unneeded "$pkgdir/usr/bin/bk"
}