wok annotate bchunk/receipt @ rev 25706

BootProg/boot32.asm: add int 21h services 02h, 09h, 25h, 35h
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 26 17:36:15 2024 +0000 (3 days ago)
parents e1e1678c5265
children
rev   line source
pascal@4047 1 # SliTaz package receipt.
pascal@4047 2
pascal@4047 3 PACKAGE="bchunk"
Hans-G?nter@20742 4 VERSION="1.2.2"
pascal@4047 5 CATEGORY="misc"
Hans-G?nter@20742 6 TAGS="convert CD bin cue iso"
pascal@4047 7 SHORT_DESC="Converts a CD image in a '.bin / .cue' format to '.iso'."
pascal@4047 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15482 9 LICENSE="GPL2"
pascal@21506 10 WEB_SITE="https://github.com/hessu/bchunk"
Hans-G?nter@20742 11
pascal@4047 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@24974 13 WGET_URL="$WEB_SITE/archive/refs/tags/release/$VERSION.tar.gz"
pascal@4047 14
pascal@25597 15 # What is the latest version available today?
pascal@24055 16 current_version()
pascal@24055 17 {
pascal@25597 18 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
pascal@25597 19 sed '/tag\//!d;s|.*release/v*||;s|[<"].*||;q'
pascal@24055 20 }
pascal@24055 21
pascal@4047 22 # Rules to configure and make the package.
pascal@4047 23 compile_rules()
pascal@4047 24 {
pascal@4047 25 make
al@19275 26 cook_pick_manpages bchunk.1
pascal@4047 27 }
pascal@4047 28
pascal@4047 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4047 30 genpkg_rules()
pascal@4047 31 {
pascal@4047 32 mkdir -p $fs/usr/bin
pascal@4047 33 cp $src/bchunk $fs/usr/bin
pascal@4047 34 }