wok-next diff libnotify/receipt @ rev 14761
linux: add boot subroot support (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jun 19 11:56:55 2013 +0200 (2013-06-19) |
parents | 2424f798cd58 |
children | e1ee172acb7b |
line diff
1.1 --- a/libnotify/receipt Wed Nov 17 23:50:37 2010 +0000 1.2 +++ b/libnotify/receipt Wed Jun 19 11:56:55 2013 +0200 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="utilities" 1.5 SHORT_DESC="Notification library" 1.6 MAINTAINER="fabrice.thiroux@free.fr" 1.7 -DEPENDS="dbus gtk+ dbus-glib xorg-libXdamage" 1.8 -BUILD_DEPENDS="dbus-dev gtk+-dev dbus-glib dbus-glib-dev perl expat-dev" 1.9 +LICENSE="LGPL2.1" 1.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.11 WEB_SITE="http://www.galago-project.org/" 1.12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL" 1.13 1.14 +DEPENDS="dbus gtk+ dbus-glib xorg-libXdamage" 1.15 +BUILD_DEPENDS="dbus-dev gtk+-dev dbus-glib dbus-glib-dev perl expat-dev" 1.16 + 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 @@ -18,13 +20,13 @@ 1.21 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.22 --mandir=/usr/share/man --disable-static $CONFIGURE_ARGS && 1.23 make && 1.24 - make DESTDIR=$PWD/_pkg install 1.25 + make DESTDIR=$DESTDIR install 1.26 } 1.27 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 mkdir -p $fs/usr/lib 1.32 - cp -a $_pkg/usr/bin $fs/usr 1.33 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.34 + cp -a $install/usr/bin $fs/usr 1.35 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.36 }