summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fe59c5ea48170a3072ca0ab98fd237810839556a (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
#
# Maintainer: Uffe Jakobsen <uffe@uffe.org>
#

pkgname=funyahoo-plusplus-git
_pkgname=funyahoo-plusplus
pkgver=r79.fbbd9c5
pkgrel=1
pkgdesc="Replacement Yahoo prpl (protocol plugin) for Pidgin/libpurple"
arch=("i686" "x86_64")
url="https://github.com/EionRobb/funyahoo-plusplus"
license=("GPL3")
depends=("libpurple" "json-glib")
conflict=()
source=("git+https://github.com/EionRobb/funyahoo-plusplus.git")
md5sums=('SKIP')


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

build() {
  cd "${srcdir}/${_pkgname}"
  make || return 1
}

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

#
# EOF
#