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

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 9278a60d6895
children a3c581bf52b8
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://code.google.com/archive/p/$PACKAGE/"
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 }