summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5fca1983f16a92fab6b505c8db6f2d9c07d1a1ca (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
# Maintainer: Kusoneko <kusoneko@kusoneko.moe>

pkgname=pounce-git
pkgver=3.1.r470.2abf0df
pkgrel=1
pkgdesc="A multi-client, TLS-only IRC bouncer"
arch=('x86_64')
url="https://git.causal.agency/pounce"
license=('GPL3')
makedepends=('git')
depends=('libretls' 'libxcrypt')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${pkgname%-git}::git+https://git.causal.agency/${pkgname%-git}.git")
md5sums=('SKIP')

pkgver() {
    cd "$srcdir/${pkgname%-git}"
    printf "%s.r%s.%s" "$(git describe --tags --abbrev=0)" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
	cd "$srcdir/${pkgname%-git}"
	./configure --prefix=/usr --mandir=/usr/share/man
	make all
}

package() {
	cd "$srcdir/${pkgname%-git}"
	make DESTDIR="$pkgdir/" install
}