wok view bzip2/receipt @ rev 22144

updated x264 and x264-dev (20160517-2245 -> 20191105-2245)
author Hans-G?nter Theisgen
date Wed Nov 06 15:16:51 2019 +0100 (2019-11-06)
parents a511baf85854
children ea31fefd3ec4
line source
1 # SliTaz package receipt.
3 PACKAGE="bzip2"
4 VERSION="1.0.6"
5 CATEGORY="utilities"
6 SHORT_DESC="High-quality data compressor."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://sourceware.org/bzip2/"
11 WGET_URL="http://www.bzip.org/$VERSION/$TARBALL"
12 TAGS="compression archive"
13 HOST_ARCH="i486 arm"
15 DEPENDS="bzlib"
16 BUILD_DEPENDS=""
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # Disable the tests since they won't work on a multi-architecture build
22 cp Makefile Makefile.orig
23 sed -e "/^all:/s/ test//" Makefile.orig > Makefile
25 # No configure script, we must used CC, AR and RANLIB set by cook.
26 case "$ARCH" in
27 arm*)
28 make -f Makefile-libbz2_so CC=${CC} AR=${AR} RANLIB=${RANLIB} &&
29 make clean && make CC=${CC} AR=${AR} RANLIB=${RANLIB} ;;
30 *)
31 make -f Makefile-libbz2_so &&
32 make clean && make ;;
33 esac
35 cook_pick_manpages bzdiff.1 bzgrep.1 bzip2.1 bzmore.1
36 }
38 # Just to be sure when cross-compiling.
39 testsuite()
40 {
41 readelf -h $src/bzip2-shared
42 }
44 # Rules to gen a SliTaz package suitable for Tazpkg.
45 genpkg_rules()
46 {
47 mkdir -p $fs/usr/bin
48 cp -a $src/bzip2-shared $fs/usr/bin/bzip2
49 # Da bunzip2, bzcat and lib symlink.
50 cd $fs/usr/bin
51 ln -s bzip2 bunzip2
52 ln -s bzip2 bzcat
53 }
55 # Restore Busybox symlinks upon removal
56 post_remove()
57 {
58 ln -s /bin/busybox /usr/bin/bunzip2
59 ln -s /bin/busybox /usr/bin/bzcat
60 #ln -s /bin/busybox /usr/bin/bzip2
61 }