wok-6.x view xz/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents 413b0174114a
children 5b636b13a396
line source
1 # SliTaz package receipt.
3 PACKAGE="xz"
4 VERSION="4.999.9beta"
5 CATEGORY="base-system"
6 SHORT_DESC="General-purpose data compressor with a high compression ratio."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 DEPENDS="liblzma"
10 WEB_SITE="http://tukaani.org/xz"
11 WGET_URL="$WEB_SITE/$TARBALL"
12 PROVIDE="lzma"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 --enable-dynamic=yes --enable-small \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin
31 cp -a $_pkg/usr/bin/xz $fs/usr/bin
32 cp stuff/lzma $fs/usr/bin
33 }
35 # Pre and post install commands for Tazpkg.
36 # We must remove all Busybox symlink before installing.
37 #
38 pre_install()
39 {
40 local root
41 root=$1
42 echo "Processing pre-install commands..."
43 echo -n "Removing all Busybox replaced utils... "
44 rm -f $root/usr/bin/xz
45 status
46 }
48 post_remove()
49 {
50 ln -s /bin/busybox /usr/bin/xz
51 }