Date: Friday, April 9, 2010 @ 02:28:06 Author: dgriffiths Revision: 76932
Cleanup, adopted Modified: python-notify/trunk/PKGBUILD ----------+ PKGBUILD | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2010-04-09 06:24:43 UTC (rev 76931) +++ PKGBUILD 2010-04-09 06:28:06 UTC (rev 76932) @@ -1,7 +1,8 @@ # $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $ -# Maintainer: Andrea Scarpino <[email protected]> +# Contributor: Andrea Scarpino <[email protected]> # Contributor: Roman Kyrylych <[email protected]> # Contributor: Mario Danic <[email protected]> +# Maintainer: Daniel J Griffiths <[email protected]> pkgname=python-notify pkgver=0.1.1 @@ -12,14 +13,18 @@ license=('GPL') depends=('pygtk>=2.4.1' 'libnotify>=0.4.5') makedepends=('pkgconfig' 'python>=2.6.2') -source=(http://www.galago-project.org/files/releases/source/notify-python/notify-python-$pkgver.tar.gz) +options=(!libtool) +source=(http://www.galago-project.org/files/releases/source/notify-python/notify-python-${pkgver}.tar.gz) md5sums=('8f0ef0939cc8edd2efd896ce5ba80cf4') -options=('!libtool') build() { - cd ${srcdir}/notify-python-$pkgver - ./configure --prefix=/usr - make clean - make || return 1 - make DESTDIR=${pkgdir} install || return 1 + cd ${srcdir}/notify-python-${pkgver} + ./configure --prefix=/usr + make clean + make || return 1 } + +package() { + cd ${srcdir}/notify-python-${pkgver} + make DESTDIR=${pkgdir} install || return 1 +}
