wok view cdf/receipt @ rev 3534

merge 3532:012d72b2b629 , 3530:0109c31e8835
author Liu Peng <rocky@slitaz.org>
date Mon Jun 22 17:35:58 2009 +0800 (2009-06-22)
parents
children f7e96b8e3444
line source
1 # SliTaz package receipt.
3 PACKAGE="cdf"
4 VERSION="0.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Colorized df."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://bmp-plugins.berlios.de/misc/cdf/cdf.html"
11 WGET_URL="http://download.berlios.de/bmp-plugins/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
18 # Fix typos
19 sed -i 's/filesyitems/filesystems/' src/main.c
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $_pkg/usr/bin $fs/usr
34 }