wok view tar/receipt @ rev 5013

tazbb: add TAZBB_NO_INSTALL support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 01 13:06:49 2010 +0100 (2010-03-01)
parents 127458af63a7
children b72826dd8ec2
line source
1 # SliTaz package receipt.
3 PACKAGE="tar"
4 VERSION="1.20"
5 CATEGORY="utilities"
6 SHORT_DESC="GNU tar archiving tools."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnu.org/software/tar/"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
11 TAGS="archive compression"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --libexecdir=/usr/lib/$PACKAGE \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }
32 # Prevent erasing busybox...
33 pre_install()
34 {
35 local root
36 root=$1
37 rm -f $root/usr/bin/tar
38 }
40 post_remove()
41 {
42 ln -s /bin/busybox /usr/bin/tar
43 }