wok annotate dosfstools/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents 5ea0ce1cecc0
children fe1b5660fdd1
rev   line source
pankso@143 1 # SliTaz package receipt.
pankso@143 2
pankso@143 3 PACKAGE="dosfstools"
Hans-G?nter@24496 4 VERSION="4.2"
pankso@202 5 CATEGORY="system-tools"
Hans-G?nter@24496 6 SHORT_DESC="Tools to create and check DOS filesystems."
pankso@143 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="GPL3"
pascal@20194 9 WEB_SITE="https://github.com/$PACKAGE/$PACKAGE"
Hans-G?nter@24496 10
Hans-G?nter@24496 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20194 12 WGET_URL="$WEB_SITE/releases/download/v$VERSION/$TARBALL"
Hans-G?nter@24496 13
pankso@16078 14 HOST_ARCH="i486 arm"
pankso@143 15
psychomaniak@18234 16 BUILD_DEPENDS="wget"
psychomaniak@18234 17
pascal@24055 18 current_version()
pascal@24055 19 {
pascal@24055 20 wget -O - ${WGET_URL%/down*} 2>/dev/null | \
pascal@24055 21 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
pascal@24055 22 }
pascal@24055 23
pankso@143 24 # Rules to configure and make the package.
pankso@143 25 compile_rules()
pankso@143 26 {
pascal@20194 27 ./configure &&
pascal@20194 28 make &&
Hans-G?nter@24496 29 make install DESTDIR=$DESTDIR
pankso@143 30 }
pankso@143 31
pankso@143 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@143 33 genpkg_rules()
pankso@143 34 {
Hans-G?nter@24496 35 cook_copy_folders sbin
pankso@143 36 }