2010-03-14 23:48:48 +08:00
|
|
|
pkgname=libnotify
|
2015-11-27 00:54:41 +08:00
|
|
|
pkgver=0.7.6
|
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')
|
2010-03-14 23:48:48 +08:00
|
|
|
options=('!libtool')
|
2012-02-09 13:53:38 +08:00
|
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
|
2015-11-27 00:54:41 +08:00
|
|
|
sha256sums=('0ef61ca400d30e28217979bfa0e73a7406b19c32dd76150654ec5b2bdf47d837')
|
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
|
|
|
|