core/libnotify/PKGBUILD

24 lines
617 B
Bash
Raw Normal View History

2010-03-14 23:48:48 +08:00
pkgname=libnotify
2017-11-02 05:17:47 +08:00
pkgver=0.7.7
2011-09-03 07:52:15 +08:00
pkgrel=1
2010-03-14 23:48:48 +08:00
pkgdesc="Desktop notification library"
2011-09-03 07:52:15 +08:00
arch=('i686' 'x86_64')
url="http://library.gnome.org/devel/notification-spec/"
2010-03-14 23:48:48 +08:00
license=('LGPL')
2011-09-03 07:52:15 +08:00
depends=('gdk-pixbuf2')
makedepends=('gobject-introspection' 'gtk3')
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
2017-11-02 05:17:47 +08:00
sha256sums=('9cb4ce315b2655860c524d46b56010874214ec27e854086c1a1d0260137efc04')
2010-03-14 23:48:48 +08:00
build() {
2011-09-03 07:52:15 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --disable-static
2011-09-03 07:52:15 +08:00
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-03-14 23:48:48 +08:00
}