PKGBUILDs/extra/python-notify/PKGBUILD
2009-10-09 21:23:22 -05:00

25 lines
781 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
# Contributor: Mario Danic <mario.danic@gmail.com>
pkgname=python-notify
pkgver=0.1.1
pkgrel=6
pkgdesc="Python bindings for libnotify"
arch=('i686' 'x86_64')
url="http://www.galago-project.org/"
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)
md5sums=('8f0ef0939cc8edd2efd896ce5ba80cf4')
options=('!libtool')
build() {
cd ${srcdir}/notify-python-$pkgver
./configure --prefix=/usr
make clean
make || return 1
make DESTDIR=${pkgdir} install || return 1
}