core/libnotify/PKGBUILD

35 lines
831 B
Bash
Raw Normal View History

2011-09-03 07:52:15 +08:00
#
# Chakra Package
2011-09-03 07:52:15 +08:00
#
# Fabian Kosmale <inkane@chakra-project.org>
# 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
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')
makedepends=('gobject-introspection' 'gtk3')
2010-03-14 23:48:48 +08:00
options=('!libtool')
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
md5sums=('8e9f8bd26517bc197ab1df748df289a9')
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
}