summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4fb9682ad57c11d31699b227f3378ecc47486276 (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
# Maintainer: Andrew Hill <andrew@andrewkhill.com>
pkgname=bok
pkgver() {
	cd "$srcdir/$pkgname"
	printf $(git describe | sed "s/-/./g")
}
pkgver=v1.0.1.g9cc54d9
pkgrel=1
pkgdesc="A simple shellscript to manage personal journals"
arch=('any')
url="https://github.com/astroengisci/bok"
license=('GPL')
depends=('sh')
makedepends=('git')
provides=("$pkgname")
conflicts=("$pkgname")
source=("git+$url")
md5sums=('SKIP') #autofill using updpkgsums

package() {
  cd "$pkgname"

  make PREFIX="/usr" DESTDIR="$pkgdir" -s install
}