# $Id: PKGBUILD 128452 2011-06-24 01:23:15Z eric $ # Maintainer: Vesa Kaihlavirta # Contributor: Michael Baehr pkgname=ffcall pkgver=1.10 pkgrel=4.1 pkgdesc="C library for implementing foreign function calls in embedded interpreters" arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/libffcall/" license=('GPL2') options=('!libtool' '!makeflags') source=(http://www.haible.de/bruno/gnu/${pkgname}-${pkgver}.tar.gz mipsn32.patch) md5sums=('2db95007e901f3bc2ae7e5a9fe9ebea4' '64045515f2664b5544943c6754bf2737') build() { cd "${srcdir}/${pkgname}-${pkgver}" [ "$CARCH" = "x86_64" ] && CONFIGFLAG="--with-pic" [ "$CARCH" = "mips64el" ] && { CONFIGFLAG="--with-pic" patch -Np0 -i "$srcdir/mipsn32.patch" } ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGFLAG make } check() { cd "${srcdir}/${pkgname}-${pkgver}" make check } package() { cd "${srcdir}/${pkgname}-${pkgver}" install -d "${pkgdir}"/usr/share/{man,doc/ffcall} make DESTDIR="${pkgdir}" htmldir=/usr/share/doc/ffcall install }