wok view pbzip2/receipt @ rev 16177

8086tiny: nasm is native, do not use it
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 30 16:34:03 2014 +0000 (2014-03-30)
parents e9f090acf2c7
children 2d139bbfca5c
line source
1 # SliTaz package receipt.
3 PACKAGE="pbzip2"
4 VERSION="1.1.6"
5 CATEGORY="base-system"
6 SHORT_DESC="Parallel implementation of bzip2."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://compression.ca"
11 WGET_URL="$WEB_SITE/$PACKAGE/$TARBALL"
13 DEPENDS="bzlib"
14 BUILD_DEPENDS="bzip2-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp $src/pbzip2 $fs/usr/bin
28 }