wok view cdf/receipt @ rev 20769

updated ccid (1.4.8 -> 1.4.30)
author Hans-G?nter Theisgen
date Wed Feb 13 16:46:55 2019 +0100 (2019-02-13)
parents eb8067417980
children 34e801e0eb52
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="https://github.com/novel/cdf"
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 }