wok view jansson/receipt @ rev 17584

Fix: elfutils build
author Alexander Medvedev <devl547@gmail.com>
date Sun Feb 08 21:01:57 2015 +0000 (2015-02-08)
parents
children f5c4924e8cd9
line source
1 # SliTaz package receipt.
3 PACKAGE="jansson"
4 VERSION="2.6"
5 CATEGORY="x-window"
6 SHORT_DESC="C library for encoding, decoding and manipulating JSON data."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.digip.org/jansson/"
11 WGET_URL="http://www.digip.org/jansson/releases/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="xorg-libX11"
15 BUILD_DEPENDS="xorg-libX11-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }