wok-current rev 14900
Add firmware-mod-kit
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 31 11:20:11 2013 +0200 (2013-07-31) |
parents | a3fafab03b51 |
children | 1af999926109 |
files | firmware-mod-kit/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/firmware-mod-kit/receipt Wed Jul 31 11:20:11 2013 +0200 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="firmware-mod-kit" 1.7 +VERSION="099" 1.8 +CATEGORY="misc" 1.9 +SHORT_DESC="Scripts and utilities to rebuild openwrt based images." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="fmk_$VERSION.tar.gz" 1.12 +WEB_SITE="http://code.google.com/p/$PACKAGE/" 1.13 +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" 1.14 + 1.15 +DEPENDS="liblzma zlib bash" 1.16 +BUILD_DEPENDS="liblzma-dev zlib-dev" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src/src 1.22 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.23 + --mandir=/usr/share/man \ 1.24 + $CONFIGURE_ARGS && make -j 1 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + 1.31 + mkdir -p $fs/usr/share 1.32 + cp -a $src $fs/usr/share/firmware-mod-kit 1.33 +}