wok diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libnotify-gtk3/receipt	Mon Mar 25 15:43:45 2013 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libnotify-gtk3"
     1.7 +VERSION="0.7.5"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +SOURCE="libnotify"
    1.12 +HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
    1.13 +TARBALL="$SOURCE-$VERSION.tar.xz"
    1.14 +WEB_SITE="http://developer-next.gnome.org/libnotify/"
    1.15 +WGET_URL="$GNOME_MIRROR/$SOURCE/$HI_VERSION/$TARBALL"
    1.16 +TAGS="gtk3"
    1.17 +
    1.18 +DEPENDS="gdk-pixbuf"
    1.19 +BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	./configure \
    1.25 +		--disable-static \
    1.26 +		--enable-introspection \
    1.27 +		--disable-gtk-doc \
    1.28 +		$CONFIGURE_ARGS &&
    1.29 +	make &&
    1.30 +	make DESTDIR=$install install
    1.31 +}
    1.32 +
    1.33 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.34 +genpkg_rules()
    1.35 +{
    1.36 +	mkdir -p $fs/usr/lib
    1.37 +	cp -a $install/usr/bin $fs/usr
    1.38 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.39 +}