wok-undigest annotate libnotify3/receipt @ rev 938

Add: firefox (17.0.3esr)
author Dominique Corbex <domcox@slitaz.org>
date Wed Mar 06 07:15:40 2013 +0100 (2013-03-06)
parents
children
rev   line source
al@937 1 # SliTaz package receipt.
al@937 2
al@937 3 PACKAGE="libnotify3"
al@937 4 VERSION="0.7.5"
al@937 5 CATEGORY="utilities"
al@937 6 SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)"
al@937 7 MAINTAINER="al.bobylev@gmail.com"
al@937 8 SOURCE="libnotify"
al@937 9 HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
al@937 10 TARBALL="$SOURCE-$VERSION.tar.xz"
al@937 11 WEB_SITE="http://developer-next.gnome.org/libnotify/"
al@937 12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$SOURCE/$HI_VERSION/$TARBALL"
al@937 13
al@937 14 DEPENDS="gdk-pixbuf"
al@937 15 BUILD_DEPENDS="gtk+3-dev"
al@937 16
al@937 17 # Rules to configure and make the package.
al@937 18 compile_rules()
al@937 19 {
al@937 20 ./configure $CONFIGURE_ARGS &&
al@937 21 make &&
al@937 22 make DESTDIR=$install install
al@937 23 }
al@937 24
al@937 25 # Rules to gen a SliTaz package suitable for Tazpkg.
al@937 26 genpkg_rules()
al@937 27 {
al@937 28 mkdir -p $fs/usr/lib
al@937 29 cp -a $install/usr/bin $fs/usr
al@937 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@937 31 }