wok view nrg2iso/receipt @ rev 25002

updated nrg2iso (0.4 -> 0.4.1)
author Hans-G?nter Theisgen
date Mon May 16 14:45:30 2022 +0100 (23 months ago)
parents d7522d21c4d3
children
line source
1 # SliTaz package receipt.
3 PACKAGE="nrg2iso"
4 VERSION="0.4.1"
5 CATEGORY="system-tools"
6 TAGS="CD DVD ISO9660"
7 SHORT_DESC="Convert CD (or DVD) image generated by Nero Burning Rom to ISO format."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://gregory.kokanosky.free.fr/v4/linux/$TARBALL"
15 # What is the latest version available today?
16 current_version()
17 {
18 wget -O - $WEB_SITE 2>/dev/null | \
19 sed "/latest/!d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
20 }
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 make
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/bin
32 cp $src/nrg2iso $fs/usr/bin
33 }