wok-6.x diff jansson/receipt @ rev 17018
busybox/fatattr: fix arm arch
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Aug 13 18:14:56 2014 +0200 (2014-08-13) |
parents | |
children | f5c4924e8cd9 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/jansson/receipt Wed Aug 13 18:14:56 2014 +0200 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="jansson" 1.7 +VERSION="2.6" 1.8 +CATEGORY="x-window" 1.9 +SHORT_DESC="C library for encoding, decoding and manipulating JSON data." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://www.digip.org/jansson/" 1.14 +WGET_URL="http://www.digip.org/jansson/releases/$TARBALL" 1.15 +HOST_ARCH="i486 arm" 1.16 + 1.17 +DEPENDS="xorg-libX11" 1.18 +BUILD_DEPENDS="xorg-libX11-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + ./configure $CONFIGURE_ARGS && 1.24 + make && make install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr/lib 1.31 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.32 +}