summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cb452dbd42a5e6fbf9a3c99ac63b5cdda35440a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Andrew Hill <andrew@andrewkhill.com>
pkgname=bok
pkgver() {
	cd "$srcdir/$pkgname"
	printf $(git describe | sed "s/-/./g")
}
pkgver=1.0.1
pkgrel=1
pkgdesc="A simple shellscript to manage personal journals"
arch=('any')
url="https://github.com/astroengisci/bok"
license=('GPL')
source=("git+$url")
depends=('sh' 'less' 'grep')
makedepends=('git')
provides=("$pkgname")
conflicts=("$pkgname")
md5sums=('SKIP') #autofill using updpkgsums

package() {
	cd "$srcdir/$pkgname"
  make PREFIX="/usr" DESTDIR="$pkgdir" -s install
}