summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 218468ff15a03f9850e0c4b2f60e1e0c13078df9 (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
39
40
41
# Maintainer: jackarc

pkgname=purple-battlenet-git
_srcname=purple-battlenet
pkgver=0.r39.g9847134
pkgrel=1
pkgdesc="A Pidgin plugin to login and send whispers to Battle.net v2 users."
arch=('i686' 'x86_64')
url="https://github.com/EionRobb/purple-battlenet"
license=('GPL3+')
depends=('libpurple')
makedepends=('libpurple' 'glib2' 'protobuf-c' 'git')
source=('git+https://github.com/EionRobb/purple-battlenet.git')
md5sums=('SKIP')

pkgver() {
 	cd $srcdir/$_srcname
	if GITTAG="$(git describe --abbrev=0 --tags 2>/dev/null)"; then
		printf '%s.r%s.g%s' \
			"$(sed -e "s/^${pkgname%%-git}//" -e 's/^[-_/a-zA-Z]\+//' -e 's/[-_+]/./g' <<< ${GITTAG})" \
			"$(git rev-list --count ${GITTAG}..)" \
			"$(git rev-parse --short HEAD)"
	else
		printf '0.r%s.g%s' \
			"$(git rev-list --count master)" \
			"$(git rev-parse --short HEAD)"
	fi
}

build() {
    cd $srcdir/$_srcname
    make 
}


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