wok-next view firmware-mod-kit/receipt @ rev 20906

Update homepages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 10 12:53:17 2018 +0300 (2018-08-10)
parents 0fcf48f89432
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="firmware-mod-kit"
4 VERSION="099"
5 CATEGORY="misc"
6 SHORT_DESC="Scripts and utilities to rebuild openwrt based images."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/rampageX/firmware-mod-kit/wiki"
11 TARBALL="fmk_$VERSION.tar.gz"
12 WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$PACKAGE/$TARBALL"
14 DEPENDS="liblzma zlib bash python-magic coreutils-file-special"
15 BUILD_DEPENDS="xz-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/src
21 ./configure $CONFIGURE_ARGS && make -j1
23 mkdir -p $install/usr/share
24 cp -a $src $install/usr/share/firmware-mod-kit
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs
31 }