wok annotate genromfs/receipt @ rev 25509

sgmixer: update wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 12 13:14:45 2023 +0000 (16 months ago)
parents 7dd01dedad38
children
rev   line source
pascal@17253 1 # SliTaz package receipt.
pascal@17253 2
pascal@17253 3 PACKAGE="genromfs"
pascal@17253 4 VERSION="0.5.7"
pascal@17253 5 CATEGORY="base-system"
pascal@17253 6 SHORT_DESC="Romfs creation tool."
pascal@17253 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17253 8 LICENSE="GPL2"
pascal@17253 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@25460 10 WEB_SITE="https://romfs.sourceforge.net/"
pascal@17253 11 WGET_URL="https://github.com/chexum/$PACKAGE/archive/$VERSION.tar.gz"
pascal@17253 12
pascal@17253 13 DEPENDS=""
pascal@17253 14 BUILD_DEPENDS="wget"
pascal@17253 15
pascal@25461 16 # What is the latest version available today?
pascal@24055 17 current_version()
pascal@24055 18 {
pascal@24299 19 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
pascal@24055 20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
pascal@24055 21 }
pascal@24055 22
pascal@17253 23 # Rules to configure and make the package.
pascal@17253 24 compile_rules()
pascal@17253 25 {
pascal@19284 26 sed -i 's|prefix)/man|prefix)/share/man|' Makefile
pascal@17253 27 patch -p0 < $stuff/genromfs.u
pascal@17253 28 make &&
pascal@17253 29 make PREFIX=$DESTDIR install
pascal@17253 30 }
pascal@17253 31
pascal@17253 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17253 33 genpkg_rules()
pascal@17253 34 {
pascal@17253 35 mkdir -p $fs/usr
pascal@17253 36 cp -a $install/usr/bin $fs/usr
pascal@17253 37 ln -s genromfs $fs/usr/bin/mkromfs
pascal@17253 38 }