wok view bchunk/receipt @ rev 25682

Up libqcow (20240308)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 24 18:25:46 2024 +0000 (2 months ago)
parents e1e1678c5265
children
line source
1 # SliTaz package receipt.
3 PACKAGE="bchunk"
4 VERSION="1.2.2"
5 CATEGORY="misc"
6 TAGS="convert CD bin cue iso"
7 SHORT_DESC="Converts a CD image in a '.bin / .cue' format to '.iso'."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/hessu/bchunk"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/refs/tags/release/$VERSION.tar.gz"
15 # What is the latest version available today?
16 current_version()
17 {
18 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
19 sed '/tag\//!d;s|.*release/v*||;s|[<"].*||;q'
20 }
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 make
26 cook_pick_manpages bchunk.1
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 cp $src/bchunk $fs/usr/bin
34 }