wok annotate pbzip2/receipt @ rev 15824

Up: btrfs-progs to 3.12.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Jan 24 10:09:14 2014 +0000 (2014-01-24)
parents e9f090acf2c7
children 2d139bbfca5c
rev   line source
pascal@15195 1 # SliTaz package receipt.
pascal@15195 2
pascal@15195 3 PACKAGE="pbzip2"
pascal@15195 4 VERSION="1.1.6"
pascal@15195 5 CATEGORY="base-system"
pascal@15195 6 SHORT_DESC="Parallel implementation of bzip2."
pascal@15195 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15195 8 LICENSE="BSD"
pascal@15195 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@15195 10 WEB_SITE="http://compression.ca"
pascal@15195 11 WGET_URL="$WEB_SITE/$PACKAGE/$TARBALL"
pascal@15195 12
pascal@15196 13 DEPENDS="bzlib"
pascal@15195 14 BUILD_DEPENDS="bzip2-dev"
pascal@15195 15
pascal@15195 16 # Rules to configure and make the package.
pascal@15195 17 compile_rules()
pascal@15195 18 {
pascal@15195 19 cd $src
pascal@15195 20 make
pascal@15195 21 }
pascal@15195 22
pascal@15195 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@15195 24 genpkg_rules()
pascal@15195 25 {
pascal@15195 26 mkdir -p $fs/usr/bin
pascal@15195 27 cp $src/pbzip2 $fs/usr/bin
pascal@15195 28 }