wok view clex/receipt @ rev 676

busybox/tar: accept --wildcards arg (do nothing)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 24 16:36:30 2008 +0000 (2008-04-24)
parents 4615573735e2
children eb7f93d231d6
line source
1 # SliTaz package receipt.
3 PACKAGE="clex"
4 VERSION="3.17"
5 CATEGORY="system-tools"
6 SHORT_DESC="Text mode file manager."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncurses"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.clex.sk/"
11 WGET_URL="http://www.clex.sk/download/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $_pkg/usr/bin/* $fs/usr/bin
28 strip -s $fs/usr/bin/*
29 }