# This is an example PKGBUILD file. Use this as a start to creating your own, # and remove these comments. For more information, see 'man PKGBUILD'. # NOTE: Please fill out the license field for your package! If it is unknown, # then please put 'unknown'. # See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines # for more information on packaging from GIT sources. # Maintainer: Your Name pkgname=taler-mint-git pkgver=r785.08c947a pkgrel=1 pkgdesc="" arch=('i686' 'x86_64') url="taler.net" license=('GPL') groups=() depends=("gnunet>=0.10.2" "postgresql>=9.3" "libmicrohttpd>=0.9.38" "jansson") makedepends=('git') provides=() conflicts=() replaces=() backup=() options=('debug') install= source=($pkgname::git+http://git.taler.net/mint.git) noextract=() md5sums=("SKIP") pkgver() { cd "$pkgname" printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } build() { cd "$srcdir" cd "$pkgname" ./bootstrap ./configure --prefix=/usr make \ CFLAGS=' -Og -g ' \ CXXFLAGS=' -Og -g ' } package() { cd "$srcdir/$pkgname" make DESTDIR="$pkgdir/" install } # vim:set ts=2 sw=2 et: