wok view libffi/receipt @ rev 14310

Up: elementary (1.7.5)
author Dominique Corbex <domcox@slitaz.org>
date Sun Apr 07 10:22:40 2013 +0200 (2013-04-07)
parents f496cfe6464a
children 8f447cf2eee5
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 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 && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }