summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ae5f028331f1b67da39c54062716aeb1a3c489f5 (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
38
# Maintainer: Ammon Smith <ammon.i.smith@gmail.com>

pkgname="qotd-git"
pkgver=0.9.4_9_g7f1be22.7f1be22
pkgrel=1
pkgdesc="A simple RFC 865-compliant QOTD (quote of the day) daemon. (git version)"
arch=('any')
url="https://gitlab.com/ammongit/${pkgname%-git}"
license=('GPL')
depends=()
makedepends=('git' 'gcc' 'ghostscript' 'gzip')
optdepends=()
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
options=('!zipman')
install="$pkgname.install"
source=("git+https://gitlab.com/ammongit/${pkgname%-git}.git")
sha256sums=('SKIP')
backup=('etc/qotd.conf')

pkgver() {
	cd "$srcdir/${pkgname%-git}"
	local _ver="$(git describe --tags | sed 's/-/_/g')"
	printf '%s.%s' "${_ver:1}" "$(git describe --always)"
}

build() {
	cd "$srcdir/${pkgname%-git}"
	make release
}

package() {
	cd "$srcdir/${pkgname%-git}"
	make ROOT="$pkgdir" SYSTEMD=1 install
	install -D -m644 LICENSE "$pkgdir/usr/share/licenses/${pkgname%-git}/LICENSE"
}

# vim: set sw=4 ts=4 noet: