wok view bsc/receipt @ rev 24347

Up expat (2.4.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 02 09:41:22 2022 +0000 (2022-02-02)
parents 5ea0ce1cecc0
children 076f424196b2
line source
1 # SliTaz package receipt.
3 PACKAGE="bsc"
4 VERSION="3.1.0"
5 CATEGORY="base-system"
6 SHORT_DESC="High performance block-sorting data compression."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3 LGPL3 Apache"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://libbsc.com/"
11 WGET_URL="https://github.com/IlyaGrebnov/libbsc/archive/$VERSION.tar.gz"
12 TAGS="compression"
14 DEPENDS="gcc-lib-base libgomp"
16 current_version()
17 {
18 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
19 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
20 }
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 # LIBBSC_SORT_TRANSFORM_SUPPORT is not free and not used.
26 make
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 cp -a $src/bsc $fs/usr/bin
34 }