summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 70c42ef7ebfaf2679c8f9827603b626bd492c5ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Author: Einhard Leichtfuß <respiranto@icloud.com>
pkgname=ctct
pkgver=0.1.2
pkgrel=1
pkgdesc="a simple console contact manager"
arch=('any')
url="https://respiranto.de/bash"
license=('AGPL')
backup=('etc/ctct/config.sh')
source=("https://respiranto.de/bash/${pkgname}_v$pkgver.tar.xz")
md5sums=('fcee4a18e2fbf4b3f2514c685a0a8848')

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

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