wok view clex/receipt @ rev 1811

Up: libxml2 (2.7.2)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Dec 04 22:46:22 2008 +0100 (2008-12-04)
parents eb7f93d231d6
children f7e96b8e3444
line source
1 # SliTaz package receipt.
3 PACKAGE="clex"
4 VERSION="3.18"
5 CATEGORY="system-tools"
6 SHORT_DESC="Text mode file manager."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.clex.sk/"
12 WGET_URL="http://www.clex.sk/download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/etc $fs/usr/bin
31 cp -a $_pkg/usr/bin/* $fs/usr/bin
32 cp -a stuff/skel $fs/etc
33 }