summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bab2beae67ff53dc3a1e5deec8241b4d3b90c355 (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
# Maintainer: Frank Asseg <frank.asseg@objecthunter.net>
_commit=ae9920214698e00179008a2d92d179c3107c51bd
pkgname=crumbs
pkgver=0.0.2
pkgrel=1
epoch=
pkgdesc="A bookmarking system for the command line"
arch=('any')
url="https://github.com/fasseg/crumbs"
license=('WTFPL')
groups=()
depends=()
makedepends=('git')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=('etc/crumbs.conf')
options=()
install=
changelog=
source=("git://github.com/fasseg/crumbs.git#commit=${_commit}")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

build() {
	cd "$pkgname"
	./configure --prefix=/usr --sysconfdir=/etc
	make
}

package() {
	cd "$pkgname"
	make DESTDIR="$pkgdir/" install
}