wok-next view cdf/receipt @ rev 20906

Update homepages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 10 12:53:17 2018 +0300 (2018-08-10)
parents eb8067417980
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="cdf"
4 VERSION="0.2"
5 COMMIT="22dfb29"
6 CATEGORY="system-tools"
7 SHORT_DESC="Colorized df (color schemes)."
8 MAINTAINER="paul@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="https://github.com/novel/cdf"
12 WGET_URL="https://github.com/novel/cdf/archive/$COMMIT.tar.gz"
13 TAGS="color schemes"
15 DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
22 # Fix typos
23 sed -i 's/filesyitems/filesystems/' src/main.c
25 ./configure \
26 --prefix=/usr \
27 --infodir=/usr/share/info \
28 --mandir=/usr/share/man \
29 $CONFIGURE_ARGS &&
30 make && make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 cp -a $install/usr/bin $fs/usr
38 }