Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2073 - (show annotations)
Sat Nov 13 01:47:47 2010 UTC (2 years, 6 months ago) by acrux
File size: 476 byte(s)
libffi: initial commit
1 # Description: A portable, high level programming interface to various calling conventions.
2 # URL: http://sourceware.org/libffi
3 # Maintainer: Giuseppe Coviello <cjg@cruxppc.org>
4 # Packager: Giuseppe Coviello <cjg@cruxppc.org>
5 # Depends on:
6
7 name=libffi
8 version=3.0.9
9 release=1
10 source=(ftp://sourceware.org/pub/libffi/libffi-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr --mandir=/usr/man
15 make
16 make DESTDIR=$PKG install
17 rm -rf $PKG/usr/share
18 }
19