diff options
Diffstat (limited to 'gnome-unstable/libnotify/PKGBUILD')
-rw-r--r-- | gnome-unstable/libnotify/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnome-unstable/libnotify/PKGBUILD b/gnome-unstable/libnotify/PKGBUILD new file mode 100644 index 000000000..f20fb9f0a --- /dev/null +++ b/gnome-unstable/libnotify/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 115920 2011-03-22 14:03:02Z ibiru $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=libnotify +pkgver=0.7.2 +pkgrel=1 +pkgdesc="Desktop notification library" +arch=('i686' 'x86_64') +url="http://library.gnome.org/devel/notification-spec/" +license=('LGPL') +depends=('gdk-pixbuf2') +makedepends=('gtk3' 'gobject-introspection') +options=('!libtool') +source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('9b6a8459401e4af3da9cbc9e35a58d1a977273d3fe898d4a00a888f4191b85d6') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |