# Maintainer: Vesa Kaihlavirta # Contributor: Michael Baehr # ALARM: Kevin Mihelich # - configure v7/v8 with --with-pic pkgname=ffcall pkgver=2.1 pkgrel=1 pkgdesc="C library for implementing foreign function calls in embedded interpreters" arch=('x86_64') url="https://www.gnu.org/software/libffcall/" license=('GPL2') options=('!makeflags' 'staticlibs') source=(https://ftp.gnu.org/gnu/libffcall/libffcall-${pkgver}.tar.gz) sha256sums=('a091fb8bbabf17c94a2dae2d41161b96a08ab92b5f75d3364157a2c34d538c47') build() { cd "${srcdir}/lib${pkgname}-${pkgver}" [ "$CARCH" = "x86_64" -o "$CARCH" = "aarch64" -o "$CARCH" = "armv7h" ] && CONFIGFLAG="--with-pic" ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGFLAG make } check() { cd "${srcdir}/lib${pkgname}-${pkgver}" make check } package() { cd "${srcdir}/lib${pkgname}-${pkgver}" install -d "${pkgdir}"/usr/share/{man,doc/ffcall} make DESTDIR="${pkgdir}" htmldir=/usr/share/doc/ffcall install }