wok view firmware-mod-kit/receipt @ rev 15130

pinentry-gtk: add build_depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 09:23:59 2013 +0000 (2013-08-15)
parents 1af999926109
children 07eb534c4186
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 TARBALL="fmk_$VERSION.tar.gz"
9 WEB_SITE="http://code.google.com/p/$PACKAGE/"
10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
12 DEPENDS="liblzma zlib bash python-magic coreutils-file-special"
13 BUILD_DEPENDS="liblzma-dev zlib-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src/src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS && make -j 1
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
28 mkdir -p $fs/usr/share
29 cp -a $src $fs/usr/share/firmware-mod-kit
30 }