wok annotate libnotify-gtk3/receipt @ rev 14252

readline: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 25 15:43:45 2013 +0100 (2013-03-25)
parents
children 68d68791ced5
rev   line source
al@14237 1 # SliTaz package receipt.
al@14237 2
al@14237 3 PACKAGE="libnotify-gtk3"
al@14237 4 VERSION="0.7.5"
al@14237 5 CATEGORY="utilities"
al@14237 6 SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)"
al@14237 7 MAINTAINER="al.bobylev@gmail.com"
al@14237 8 SOURCE="libnotify"
al@14237 9 HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
al@14237 10 TARBALL="$SOURCE-$VERSION.tar.xz"
al@14237 11 WEB_SITE="http://developer-next.gnome.org/libnotify/"
al@14237 12 WGET_URL="$GNOME_MIRROR/$SOURCE/$HI_VERSION/$TARBALL"
al@14237 13 TAGS="gtk3"
al@14237 14
al@14237 15 DEPENDS="gdk-pixbuf"
al@14237 16 BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev"
al@14237 17
al@14237 18 # Rules to configure and make the package.
al@14237 19 compile_rules()
al@14237 20 {
al@14237 21 ./configure \
al@14237 22 --disable-static \
al@14237 23 --enable-introspection \
al@14237 24 --disable-gtk-doc \
al@14237 25 $CONFIGURE_ARGS &&
al@14237 26 make &&
al@14237 27 make DESTDIR=$install install
al@14237 28 }
al@14237 29
al@14237 30 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14237 31 genpkg_rules()
al@14237 32 {
al@14237 33 mkdir -p $fs/usr/lib
al@14237 34 cp -a $install/usr/bin $fs/usr
al@14237 35 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@14237 36 }