core/libnotify/PKGBUILD
2017-11-01 22:17:47 +01:00

24 lines
617 B
Bash

pkgname=libnotify
pkgver=0.7.7
pkgrel=1
pkgdesc="Desktop notification library"
arch=('i686' 'x86_64')
url="http://library.gnome.org/devel/notification-spec/"
license=('LGPL')
depends=('gdk-pixbuf2')
makedepends=('gobject-introspection' 'gtk3')
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
sha256sums=('9cb4ce315b2655860c524d46b56010874214ec27e854086c1a1d0260137efc04')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --disable-static
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}