wok annotate pbzip2/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents d3eb5f4b53ea
children 8dd8bab3f0ca
rev   line source
pascal@15195 1 # SliTaz package receipt.
pascal@15195 2
pascal@15195 3 PACKAGE="pbzip2"
pascal@20180 4 VERSION="1.1.13"
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@17869 11 WGET_URL="https://launchpad.net/pbzip2/${VERSION%.*}/$VERSION/+download/$TARBALL"
pascal@15195 12
pascal@15196 13 DEPENDS="bzlib"
pascal@16393 14 BUILD_DEPENDS="bzip2-dev wget"
pascal@15195 15
pascal@15195 16 # Rules to configure and make the package.
pascal@15195 17 compile_rules()
pascal@15195 18 {
pascal@15195 19 make
pascal@15195 20 }
pascal@15195 21
pascal@15195 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@15195 23 genpkg_rules()
pascal@15195 24 {
pascal@15195 25 mkdir -p $fs/usr/bin
pascal@15195 26 cp $src/pbzip2 $fs/usr/bin
pascal@15195 27 }