wok-undigest view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="libnotify3"
4 VERSION="0.7.5"
5 CATEGORY="utilities"
6 SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)"
7 MAINTAINER="al.bobylev@gmail.com"
8 SOURCE="libnotify"
9 HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
10 TARBALL="$SOURCE-$VERSION.tar.xz"
11 WEB_SITE="http://developer-next.gnome.org/libnotify/"
12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$SOURCE/$HI_VERSION/$TARBALL"
14 DEPENDS="gdk-pixbuf"
15 BUILD_DEPENDS="gtk+3-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$install install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }