summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 391c36e29711dbe111394f15f7707fc61365d351 (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: grufo <madmurphy333 AT gmail DOT com>

_libname='libgnunetworker'
pkgname="${_libname}-git"
pkgver='r8.80daef5'
pkgrel=1
pkgdesc='Multithreading with GNUnet'
arch=('i686' 'x86_64')
url="https://github.com/madmurphy/${_libname}"
license=('AGPL')
depends=('gettext' 'gnunet')
provides=("${_libname}")
conflicts=("${_libname}" "${_libname}-bin")
source=("git+https://github.com/madmurphy/${_libname}.git")
md5sums=('SKIP')

pkgver() {
	cd "${_libname}"
	printf "'r%s.%s'" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
	cd "${srcdir}/${_libname}"
	./bootstrap --noconfigure
}

build() {
	cd "${srcdir}/${_libname}"
	./configure --prefix=/usr
	make
}

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