mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
26 lines
884 B
Bash
26 lines
884 B
Bash
# $Id: PKGBUILD 2176 2008-05-28 20:52:39Z eric $
|
|
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
|
|
# Contributor: Michael Baehr <usemike@spamblocked.com>
|
|
|
|
pkgname=ffcall
|
|
pkgver=1.10
|
|
pkgrel=3
|
|
pkgdesc="C library for implementing foreign function calls in embedded interpreters"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.haible.de/bruno/packages-ffcall.html"
|
|
license=('GPL2')
|
|
options=('!libtool' '!makeflags')
|
|
source=(http://www.haible.de/bruno/gnu/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('2db95007e901f3bc2ae7e5a9fe9ebea4')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
if [ "$CARCH" = "x86_64" ]; then
|
|
./configure --prefix=/usr --mandir=/usr/share/man --with-pic || return 1
|
|
else
|
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
|
fi
|
|
make || return 1
|
|
install -d ${startdir}/pkg/usr/share/man || return 1
|
|
make DESTDIR=${startdir}/pkg/ install || return 1
|
|
}
|