wok annotate dzen2/receipt @ rev 12980
icedtea6-jdk: add source links
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jun 02 13:16:54 2012 +0200 (2012-06-02) |
parents | c2e62b65e0fa |
children | eb8067417980 |
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" |
pascal@2514 | 11 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp" |
jozee@4934 | 12 TAGS="system monitor notification" |
mallory@1819 | 13 |
mallory@1819 | 14 # Rules to configure and make the package. |
mallory@1819 | 15 compile_rules() |
mallory@1819 | 16 { |
mallory@1819 | 17 cd $src |
mallory@1819 | 18 sed -e 's/\/usr\/local/\/usr/' < config.mk > config.mk.slitaz |
mallory@1819 | 19 mv config.mk.slitaz config.mk |
mallory@1819 | 20 make && make DESTDIR=$PWD/_pkg install |
mallory@1819 | 21 } |
mallory@1819 | 22 |
mallory@1819 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@1819 | 24 genpkg_rules() |
mallory@1819 | 25 { |
mallory@1819 | 26 mkdir -p $fs/usr |
mallory@1819 | 27 cp -a $_pkg/usr/bin $fs/usr |
mallory@1819 | 28 } |
mallory@1819 | 29 |