wok view tar/receipt @ rev 526

Memtest: typo in unlzma
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 09 14:00:35 2008 +0000 (2008-04-09)
parents
children 127458af63a7
line source
1 # SliTaz package receipt.
3 PACKAGE="tar"
4 VERSION="1.19"
5 CATEGORY="utilities"
6 SHORT_DESC="GNU tar archiving tools."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE=""
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
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 }