# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> pkgname=ponymenu-git pkgver=20130731 pkgrel=1 pkgdesc="Quick terminal based application menu" arch=('any') url="https://github.com/maandree/ponymenu" license=('GPL3') depends=('python>=3') makedepends=('git') provides=('ponymenu') conflicts=('ponymenu') _gitroot=https://github.com/maandree/ponymenu.git _gitname=ponymenu build() { cd "$srcdir" msg "Connecting to GIT server...." if [[ -d "$_gitname" ]]; then cd "$_gitname" && git pull origin msg "The local files are updated." else git clone "$_gitroot" "$_gitname" fi msg "GIT checkout done or server timeout" msg "Starting build..." rm -rf "$srcdir/$_gitname-build" git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" cd "$srcdir/$_gitname-build" make DESTDIR="$pkgdir/" } package() { cd "$srcdir/$_gitname-build" make DESTDIR="$pkgdir/" install }