wok annotate genext2fs/receipt @ rev 24554

updated flac and flac-dev again (1.3.3 -> 1.3.4)
author Hans-G?nter Theisgen
date Fri Feb 25 11:25:23 2022 +0100 (2022-02-25)
parents 77cfd35fcd5d
children d2113b0b8c40
rev   line source
pascal@17311 1 # SliTaz package receipt.
pascal@17311 2
pascal@17311 3 PACKAGE="genext2fs"
pascal@17311 4 VERSION="1.4.1"
pascal@17311 5 CATEGORY="base-system"
pascal@17311 6 SHORT_DESC="Generates an ext2 filesystem as a normal (i.e. non-root) user."
pascal@17311 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17311 8 LICENSE="GPL2"
pascal@17311 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@17311 10 WEB_SITE="http://genext2fs.sourceforge.net/"
pascal@17311 11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
pascal@17311 12
pascal@24403 13 # What is the latest version available today?
pascal@24403 14 current_version()
pascal@24403 15 {
pascal@24403 16 wget -O - https://sourceforge.net/projects/genext2fs/files/genext2fs/ 2>/dev/null | \
pascal@24403 17 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
pascal@24403 18 sed '/scope="row/!d;s|.*/genext2fs/||;s|/.*||;q'
pascal@24403 19 }
pascal@24403 20
pascal@17311 21 # Rules to configure and make the package.
pascal@17311 22 compile_rules()
pascal@17311 23 {
pascal@17311 24 ./configure --prefix=/usr \
pascal@17311 25 $CONFIGURE_ARGS &&
pascal@17311 26 make &&
pascal@17311 27 make DESTDIR=$DESTDIR install
pascal@17311 28 }
pascal@17311 29
pascal@17311 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17311 31 genpkg_rules()
pascal@17311 32 {
pascal@17311 33 mkdir -p $fs/usr
pascal@17311 34 cp -a $install/usr/bin $fs/usr
pascal@17311 35 }
pascal@17311 36