wok annotate nitrogen/receipt @ rev 4969

add/improve TAGS n* receipts
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 24 10:31:06 2010 +0000 (2010-02-24)
parents fd349471c1e9
children 5b44af8c1257
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"
jozee@4969 13 TAGS="wallpaper"
mallory@3116 14
mallory@3116 15 # Rules to configure and make the package.
mallory@3116 16 compile_rules()
mallory@3116 17 {
mallory@3116 18 cd $src
mallory@3116 19 sed -e '/png.h/d' < src/Thumbview.cc > src/Thumbview.cc.patched
mallory@3116 20 mv src/Thumbview.cc.patched src/Thumbview.cc
mallory@3116 21 ./configure \
mallory@3116 22 --prefix=/usr \
mallory@3116 23 --infodir=/usr/share/info \
mallory@3116 24 --mandir=/usr/share/man \
mallory@3116 25 $CONFIGURE_ARGS &&
mallory@3116 26 make && make DESTDIR=$PWD/_pkg install
mallory@3116 27 }
mallory@3116 28
mallory@3116 29 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@3116 30 genpkg_rules()
mallory@3116 31 {
mallory@3116 32 mkdir -p $fs/usr/share/pixmaps $fs/usr/share/applications
mallory@3116 33 cp -a $_pkg/usr/bin $fs/usr
mallory@3116 34 cp -a $_pkg/usr/share/icons/hicolor/32x32/apps/nitrogen.png $fs/usr/share/pixmaps/
mallory@3116 35 cp -a stuff/nitrogen.desktop $fs/usr/share/applications/
mallory@3116 36 }
mallory@3116 37