wok view dzen2/receipt @ rev 9619

Up: py3k to 3.2. Added CVE-2011-1521 security fix. Also added pyconfig.h to py3k so python3 works. Nothing depends on this package yet so updating it will not cause any problems.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 18 15:39:33 2011 +0000 (2011-04-18)
parents c2e62b65e0fa
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="dzen2"
4 VERSION="0.8.5"
5 CATEGORY="utilities"
6 SHORT_DESC="A general purpose messaging and notification program. "
7 MAINTAINER="mallory@sweetpeople.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://gotmor.googlepages.com/dzen"
10 WGET_URL="http://gotmor.googlepages.com/$TARBALL"
11 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp"
12 TAGS="system monitor notification"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 sed -e 's/\/usr\/local/\/usr/' < config.mk > config.mk.slitaz
19 mv config.mk.slitaz config.mk
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }