diff options
Diffstat (limited to 'extra/ffcall/PKGBUILD')
-rw-r--r-- | extra/ffcall/PKGBUILD | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/extra/ffcall/PKGBUILD b/extra/ffcall/PKGBUILD index 147e47af2..a328a6e77 100644 --- a/extra/ffcall/PKGBUILD +++ b/extra/ffcall/PKGBUILD @@ -6,17 +6,25 @@ pkgname=ffcall pkgver=1.10 pkgrel=6 pkgdesc="C library for implementing foreign function calls in embedded interpreters" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/libffcall/" license=('GPL2') options=('!makeflags' 'staticlibs') -source=(http://www.haible.de/bruno/gnu/${pkgname}-${pkgver}.tar.gz) -md5sums=('2db95007e901f3bc2ae7e5a9fe9ebea4') +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 } |