wok view lbzip2/receipt @ rev 22681

elilo: race condition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 18 18:53:45 2020 +0100 (2020-01-18)
parents 76533c5bf943
children f8a963794d31
line source
1 # SliTaz package receipt.
3 PACKAGE="lbzip2"
4 VERSION="2.5"
5 CATEGORY="base-system"
6 SHORT_DESC="Parallel implementation of bzip2."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://github.com/kjn/lbzip2/"
11 WGET_URL="http://archive.lbzip2.org/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 ./configure --prefix=/usr $CONFIGURE_ARGS &&
17 make check &&
18 make DESTDIR=$DESTDIR install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr
25 cp -a $install/usr/bin $fs/usr
26 }