wok view cmix/receipt @ rev 25598

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 16 12:03:07 2023 +0000 (10 months ago)
parents 2a0479881723
children
line source
1 # SliTaz package receipt.
3 PACKAGE="cmix"
4 VERSION="18"
5 CATEGORY="system-tools"
6 SHORT_DESC="lossless data compression with high ratio but high CPU/memory usage"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-v$VERSION.zip"
10 WEB_SITE="http://www.byronknoll.com/cmix.html"
11 WGET_URL="http://www.byronknoll.com/$TARBALL"
13 DEPENDS="gcc83-lib-base"
14 BUILD_DEPENDS="gcc83"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://github.com/byronknoll/cmix/releases 2>/dev/null | \
20 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
21 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 make CC=g++-83
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp -a $src/cmix $fs/usr/bin
35 }