wok-6.x annotate libidn/receipt @ rev 16792
Add libjson
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 02 20:52:57 2014 +0200 (2014-07-02) |
parents | dead8955c3ca |
children | bd3e2cbc0ec4 |
rev | line source |
---|---|
pascal@2133 | 1 # SliTaz package receipt. |
pascal@2133 | 2 |
pascal@2133 | 3 PACKAGE="libidn" |
slaxemulator@10155 | 4 VERSION="1.21" |
pascal@2133 | 5 CATEGORY="system-tools" |
pascal@2133 | 6 SHORT_DESC="Encode and decode internationalized domain names." |
pascal@2133 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15227 | 8 LICENSE="GPL3 LGPL2.1" |
pascal@2133 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@2133 | 10 WEB_SITE="http://www.gnu.org/software/$PACKAGE/" |
pascal@2133 | 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
pankso@15963 | 12 HOST_ARCH="i486 arm" |
pascal@2133 | 13 |
pascal@2133 | 14 # Rules to configure and make the package. |
pascal@2133 | 15 compile_rules() |
pascal@2133 | 16 { |
pascal@2133 | 17 cd $src |
slaxemulator@10155 | 18 ./configure $CONFIGURE_ARGS && |
pascal@15265 | 19 make $MAKEFLAGS && |
pascal@15227 | 20 make install |
pascal@2133 | 21 } |
pascal@2133 | 22 |
pascal@2133 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2133 | 24 genpkg_rules() |
pascal@2133 | 25 { |
pascal@2133 | 26 mkdir -p $fs/usr/lib |
pascal@15227 | 27 cp -a $install/usr/bin $fs/usr |
pascal@15227 | 28 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@2133 | 29 } |
pascal@2133 | 30 |