wok view gnaughty/receipt @ rev 15943

arm arch: fix pkgs build for kbd and e2fsprogs plus add flex and check
author Christophe Lincoln <pankso@slitaz.org>
date Sat Feb 22 23:10:15 2014 +0100 (2014-02-22)
parents 1da943e93655
children 9689f1b75619
line source
1 # SliTaz package receipt.
3 PACKAGE="gnaughty"
4 VERSION="1.2.4"
5 CATEGORY="utilities"
6 SHORT_DESC="Gnaughty is an utility to automatically download adult sex content."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://gnaughty.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS="curl-dev gtk+-dev glib-dev pcre-dev libglade-dev GConf-dev"
14 DEPENDS="curl gtk+ glib libpcre libglade GConf"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 export LDFLAGS="-Wl,--copy-dt-needed-entries -lgthread-2.0"
21 sed -i 's|curl/types|curl/curl|' src/http.c
22 ./configure --prefix=/usr &&
23 make && make -j 1 install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/share/ $fs/usr/
31 }