wok view libffi/receipt @ rev 12825

libffi: we need it in ARM :-)
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 22 13:16:18 2012 +0200 (2012-05-22)
parents 44e73ecc5e31
children f496cfe6464a
line source
1 # SliTaz package receipt.
3 PACKAGE="libffi"
4 VERSION="3.0.10"
5 CATEGORY="development"
6 SHORT_DESC="A portable foreign function interface library."
7 MAINTAINER="rcx@zoominternet.net"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://sourceware.org/libffi/"
10 WGET_URL="ftp://sourceware.org/pub/$PACKAGE/$TARBALL"
11 HOST_ARCH="i486 arm"
13 DEPENDS="glibc-base"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --includedir=/usr/include \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 # Create symlink to libffi.so.4
32 cd $fs/usr/lib
33 ln -sf libffi.so.5.0.10 libffi.so.4
34 }