wok annotate dzen2/receipt @ rev 2054

fix CATEGORY
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 20 17:33:00 2009 +0000 (2009-01-20)
parents 5c5856fc035d
children c2e62b65e0fa
rev   line source
mallory@1819 1 # SliTaz package receipt.
mallory@1819 2
mallory@1819 3 PACKAGE="dzen2"
mallory@1819 4 VERSION="0.8.5"
pascal@2054 5 CATEGORY="utilities"
mallory@1819 6 SHORT_DESC="A general purpose messaging and notification program. "
mallory@1819 7 MAINTAINER="mallory@sweetpeople.org"
mallory@1819 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
mallory@1819 9 WEB_SITE="http://gotmor.googlepages.com/dzen"
mallory@1819 10 WGET_URL="http://gotmor.googlepages.com/$TARBALL"
mallory@1819 11
mallory@1819 12 # Rules to configure and make the package.
mallory@1819 13 compile_rules()
mallory@1819 14 {
mallory@1819 15 cd $src
mallory@1819 16 sed -e 's/\/usr\/local/\/usr/' < config.mk > config.mk.slitaz
mallory@1819 17 mv config.mk.slitaz config.mk
mallory@1819 18 make && make DESTDIR=$PWD/_pkg install
mallory@1819 19 }
mallory@1819 20
mallory@1819 21 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@1819 22 genpkg_rules()
mallory@1819 23 {
mallory@1819 24 mkdir -p $fs/usr
mallory@1819 25 cp -a $_pkg/usr/bin $fs/usr
mallory@1819 26 }
mallory@1819 27