wok annotate nitrogen/receipt @ rev 3116

Add: Nitrogen - Background browser and setter
author Mallory MOLLO <mallory@skyrock.com>
date Mon May 18 22:58:29 2009 +0200 (2009-05-18)
parents
children bee79018e13a
rev   line source
mallory@3116 1 # SliTaz package receipt.
mallory@3116 2
mallory@3116 3 PACKAGE="nitrogen"
mallory@3116 4 VERSION="1.4"
mallory@3116 5 CATEGORY="x-window"
mallory@3116 6 SHORT_DESC="Nitrogen is a background browser and setter for X windows."
mallory@3116 7 MAINTAINER="mallory@sweetpeople.org"
mallory@3116 8 DEPENDS="gtkmm libpng"
mallory@3116 9 BUILD_DEPENDS="gtkmm-dev libpng-dev"
mallory@3116 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
mallory@3116 11 WEB_SITE="http://projects.l3ib.org/nitrogen"
mallory@3116 12 WGET_URL="$WEB_SITE/files/$TARBALL"
mallory@3116 13
mallory@3116 14 # Rules to configure and make the package.
mallory@3116 15 compile_rules()
mallory@3116 16 {
mallory@3116 17 cd $src
mallory@3116 18 sed -e '/png.h/d' < src/Thumbview.cc > src/Thumbview.cc.patched
mallory@3116 19 mv src/Thumbview.cc.patched src/Thumbview.cc
mallory@3116 20 ./configure \
mallory@3116 21 --prefix=/usr \
mallory@3116 22 --infodir=/usr/share/info \
mallory@3116 23 --mandir=/usr/share/man \
mallory@3116 24 $CONFIGURE_ARGS &&
mallory@3116 25 make && make DESTDIR=$PWD/_pkg install
mallory@3116 26 }
mallory@3116 27
mallory@3116 28 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@3116 29 genpkg_rules()
mallory@3116 30 {
mallory@3116 31 mkdir -p $fs/usr/share/pixmaps $fs/usr/share/applications
mallory@3116 32 cp -a $_pkg/usr/bin $fs/usr
mallory@3116 33 cp -a $_pkg/usr/share/icons/hicolor/32x32/apps/nitrogen.png $fs/usr/share/pixmaps/
mallory@3116 34 cp -a stuff/nitrogen.desktop $fs/usr/share/applications/
mallory@3116 35 }
mallory@3116 36