wok annotate libnotify/receipt @ rev 14714

lib[a-n]*: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 10:41:23 2013 +0200 (2013-06-11)
parents 2424f798cd58
children e1ee172acb7b
rev   line source
erjo@1987 1 # SliTaz package receipt.
erjo@1987 2
erjo@1987 3 PACKAGE="libnotify"
slaxemulator@7318 4 VERSION="0.5.2"
erjo@1987 5 CATEGORY="utilities"
erjo@1987 6 SHORT_DESC="Notification library"
erjo@1987 7 MAINTAINER="fabrice.thiroux@free.fr"
pascal@14714 8 LICENSE="LGPL2.1"
erjo@1987 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@1987 10 WEB_SITE="http://www.galago-project.org/"
slaxemulator@7318 11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@1987 12
pascal@14714 13 DEPENDS="dbus gtk+ dbus-glib xorg-libXdamage"
pascal@14714 14 BUILD_DEPENDS="dbus-dev gtk+-dev dbus-glib dbus-glib-dev perl expat-dev"
pascal@14714 15
erjo@1987 16 # Rules to configure and make the package.
erjo@1987 17 compile_rules()
erjo@1987 18 {
erjo@1987 19 cd $src
erjo@1987 20 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@2477 21 --mandir=/usr/share/man --disable-static $CONFIGURE_ARGS &&
pascal@2477 22 make &&
pascal@14714 23 make DESTDIR=$DESTDIR install
erjo@1987 24 }
erjo@1987 25
erjo@1987 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1987 27 genpkg_rules()
erjo@1987 28 {
erjo@1987 29 mkdir -p $fs/usr/lib
pascal@14714 30 cp -a $install/usr/bin $fs/usr
pascal@14714 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@1987 32 }