wok view libffi/receipt @ rev 15872

Up: lz4 (112) add lz4c, lib and dev packages
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 02 21:26:43 2014 +0100 (2014-02-02)
parents b586b25939cf
children 51b3e2d10e16
line source
1 # SliTaz package receipt.
3 PACKAGE="libffi"
4 VERSION="3.0.11"
5 CATEGORY="development"
6 SHORT_DESC="A portable foreign function interface library."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://sourceware.org/libffi/"
11 WGET_URL="ftp://sourceware.org/pub/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="glibc-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --includedir=/usr/include \
22 $CONFIGURE_ARGS &&
23 make && 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 }