wok annotate libnotify/receipt @ rev 13954

add python cssselect
author ernia <monghitri@aruba.it>
date Wed Jan 30 10:46:16 2013 +0000 (2013-01-30)
parents 1bbd4d9fe61d
children 4904e3d374a9
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@2518 8 DEPENDS="dbus gtk+ dbus-glib xorg-libXdamage"
slaxemulator@6216 9 BUILD_DEPENDS="dbus-dev gtk+-dev dbus-glib dbus-glib-dev perl expat-dev"
erjo@1987 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@1987 11 WEB_SITE="http://www.galago-project.org/"
slaxemulator@7318 12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@1987 13
erjo@1987 14 # Rules to configure and make the package.
erjo@1987 15 compile_rules()
erjo@1987 16 {
erjo@1987 17 cd $src
erjo@1987 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@2477 19 --mandir=/usr/share/man --disable-static $CONFIGURE_ARGS &&
pascal@2477 20 make &&
erjo@1987 21 make DESTDIR=$PWD/_pkg install
erjo@1987 22 }
erjo@1987 23
erjo@1987 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1987 25 genpkg_rules()
erjo@1987 26 {
erjo@1987 27 mkdir -p $fs/usr/lib
erjo@1987 28 cp -a $_pkg/usr/bin $fs/usr
erjo@1987 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@1987 30 }