wok view libffi/receipt @ rev 16756

sshfs-fuse: add rsshfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 16 19:07:54 2014 +0200 (2014-06-16)
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 }