wok annotate lbzip2/receipt @ rev 21206

Add lbzip2 (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 07 20:47:35 2019 +0200 (2019-04-07)
parents 20c3d9c18f29
children 68f9518c4cb0
rev   line source
pascal@21204 1 # SliTaz package receipt.
pascal@21204 2
pascal@21204 3 PACKAGE="lbzip2"
pascal@21204 4 VERSION="2.5"
pascal@21204 5 CATEGORY="base-system"
pascal@21204 6 SHORT_DESC="Parallel implementation of bzip2."
pascal@21204 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@21204 8 LICENSE="GPL3"
pascal@21204 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@21204 10 WEB_SITE="http://lbzip2.org/"
pascal@21204 11 WGET_URL="http://archive.lbzip2.org/$TARBALL"
pascal@21204 12
pascal@21204 13 # Rules to configure and make the package.
pascal@21204 14 compile_rules()
pascal@21204 15 {
pascal@21204 16 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@21204 17 make check &&
pascal@21204 18 make DESTDIR=$DESTDIR install
pascal@21204 19 }
pascal@21204 20
pascal@21204 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@21204 22 genpkg_rules()
pascal@21204 23 {
pascal@21206 24 mkdir -p $fs/usr
pascal@21205 25 cp -a $install/usr/bin $fs/usr
pascal@21204 26 }