wok annotate libnotify-gtk3/receipt @ rev 15175
gcompris: update LDFLAGS
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Aug 16 12:16:09 2013 +0000 (2013-08-16) |
parents | 68d68791ced5 |
children | 5e1076889439 |
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" |
pascal@14714 | 8 LICENSE="LGPL2.1" |
al@14237 | 9 SOURCE="libnotify" |
al@14237 | 10 TARBALL="$SOURCE-$VERSION.tar.xz" |
al@14237 | 11 WEB_SITE="http://developer-next.gnome.org/libnotify/" |
al@14269 | 12 SERIES=$(echo $VERSION | cut -d. -f1,2) |
al@14269 | 13 WGET_URL="$GNOME_MIRROR/$SOURCE/$SERIES/$TARBALL" |
al@14237 | 14 TAGS="gtk3" |
al@14237 | 15 |
al@14237 | 16 DEPENDS="gdk-pixbuf" |
al@14237 | 17 BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev" |
al@14237 | 18 |
al@14237 | 19 # Rules to configure and make the package. |
al@14237 | 20 compile_rules() |
al@14237 | 21 { |
al@14237 | 22 ./configure \ |
al@14237 | 23 --disable-static \ |
al@14237 | 24 --enable-introspection \ |
al@14237 | 25 --disable-gtk-doc \ |
al@14237 | 26 $CONFIGURE_ARGS && |
al@14237 | 27 make && |
al@14237 | 28 make DESTDIR=$install install |
al@14237 | 29 } |
al@14237 | 30 |
al@14237 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@14237 | 32 genpkg_rules() |
al@14237 | 33 { |
al@14237 | 34 mkdir -p $fs/usr/lib |
al@14237 | 35 cp -a $install/usr/bin $fs/usr |
al@14237 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
al@14237 | 37 } |