2011-09-03 07:52:15 +08:00
|
|
|
#
|
2012-02-09 13:53:38 +08:00
|
|
|
# Chakra Package
|
2011-09-03 07:52:15 +08:00
|
|
|
#
|
2013-07-15 07:10:36 +08:00
|
|
|
# Fabian Kosmale <inkane@chakra-project.org>
|
2012-02-09 13:53:38 +08:00
|
|
|
# Phil Miller <philm[at]chakra-project[dog]org>
|
|
|
|
# Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# Drake Justice <djustice[at]chakra-project[dot]org>
|
|
|
|
#
|
|
|
|
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
pkgname=libnotify
|
2013-07-15 07:10:36 +08:00
|
|
|
pkgver=0.7.5
|
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)
|
2013-07-15 07:10:36 +08:00
|
|
|
md5sums=('8e9f8bd26517bc197ab1df748df289a9')
|
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
|
|
|
|