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')
|
2013-07-15 07:10:36 +08:00
|
|
|
makedepends=('gobject-introspection' 'gtk3')
|
2012-02-09 13:53:38 +08:00
|
|
|
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}"
|
2013-07-15 07:10:36 +08:00
|
|
|
./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
|
|
|
}
|
2012-02-09 13:53:38 +08:00
|
|
|
|