wok annotate lbzip2/receipt @ rev 22549

updated blogotext (2.0.0.0 -> 3.7.6)
author Hans-G?nter Theisgen
date Sat Jan 04 09:02:06 2020 +0100 (2020-01-04)
parents 76533c5bf943
children f8a963794d31
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@21784 10 WEB_SITE="https://github.com/kjn/lbzip2/"
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 }