wok view pbzip2/receipt @ rev 16819

auth test, fix dep
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Fri Jul 11 10:31:39 2014 +0000 (2014-07-11)
parents 4a69154821ee
children d3eb5f4b53ea
line source
1 # SliTaz package receipt.
3 PACKAGE="pbzip2"
4 VERSION="1.1.9"
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="https://launchpad.net/pbzip2/1.1/$VERSION/+download/$TARBALL"
13 DEPENDS="bzlib"
14 BUILD_DEPENDS="bzip2-dev wget"
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 }