wok annotate genromfs/receipt @ rev 21989
fasm: build fasmarm
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Oct 15 18:06:41 2019 +0200 (2019-10-15) |
parents | 4abd910b5ea9 |
children | 5ea0ce1cecc0 |
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@17253 | 10 WEB_SITE="http://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@17253 | 16 # Rules to configure and make the package. |
pascal@17253 | 17 compile_rules() |
pascal@17253 | 18 { |
pascal@19284 | 19 sed -i 's|prefix)/man|prefix)/share/man|' Makefile |
pascal@17253 | 20 patch -p0 < $stuff/genromfs.u |
pascal@17253 | 21 make && |
pascal@17253 | 22 make PREFIX=$DESTDIR install |
pascal@17253 | 23 } |
pascal@17253 | 24 |
pascal@17253 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17253 | 26 genpkg_rules() |
pascal@17253 | 27 { |
pascal@17253 | 28 mkdir -p $fs/usr |
pascal@17253 | 29 cp -a $install/usr/bin $fs/usr |
pascal@17253 | 30 ln -s genromfs $fs/usr/bin/mkromfs |
pascal@17253 | 31 } |