wok view cdf/receipt @ rev 20318

revert back to v4.4,since glib +gtk error :-( probably v4.6.3 would work, but cannot find it on dev server
author Erkan Yilmaz <erkan@slitaz.org>
date Sun May 20 11:19:35 2018 +0000 (2018-05-20)
parents f7e96b8e3444
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="cdf"
4 VERSION="0.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Colorized df (color schemes)."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
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"
12 TAGS="color schemes"
14 DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
21 # Fix typos
22 sed -i 's/filesyitems/filesystems/' src/main.c
24 ./configure \
25 --prefix=/usr \
26 --infodir=/usr/share/info \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make && make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 }