wok-6.x diff genromfs/receipt @ rev 17941
boxbackup-server, privoxy: fix post_install (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Apr 15 10:45:00 2015 +0200 (2015-04-15) |
parents | |
children | e3270f32432e |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/genromfs/receipt Wed Apr 15 10:45:00 2015 +0200 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="genromfs" 1.7 +VERSION="0.5.7" 1.8 +CATEGORY="base-system" 1.9 +SHORT_DESC="Romfs creation tool." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://romfs.sourceforge.net/" 1.14 +WGET_URL="https://github.com/chexum/$PACKAGE/archive/$VERSION.tar.gz" 1.15 + 1.16 +DEPENDS="" 1.17 +BUILD_DEPENDS="wget" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + patch -p0 < $stuff/genromfs.u 1.23 + make && 1.24 + make PREFIX=$DESTDIR install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr 1.31 + cp -a $install/usr/bin $fs/usr 1.32 + ln -s genromfs $fs/usr/bin/mkromfs 1.33 +}