mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
31 lines
864 B
Bash
31 lines
864 B
Bash
# $Id: PKGBUILD 53260 2009-09-27 15:01:04Z juergen $
|
|
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
|
|
|
|
pkgname=librep
|
|
pkgver=0.90.2
|
|
pkgrel=1
|
|
pkgdesc="A Lisp system for UNIX"
|
|
depends=('gmp' 'gdbm' 'libffi' 'bash' 'ncurses>=5.6-7')
|
|
source=(http://downloads.sourceforge.net/sourceforge/librep/librep-$pkgver.tar.bz2)
|
|
md5sums=('3e1e10a0ad7b47a089d559b7944d1287')
|
|
license=('GPL2')
|
|
OPTIONS=(libtool)
|
|
arch=('i686' 'x86_64')
|
|
url="http://sourceforge.net/projects/librep"
|
|
install=librep.install
|
|
|
|
|
|
build() {
|
|
echo ${OPTIONS[@]}
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --disable-static \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$pkgname \
|
|
--with-readline || return 1
|
|
make || return 1
|
|
|
|
# create some directories or make install fails
|
|
install -d $pkgdir/usr/{share/aclocal,lib/pkgconfig}
|
|
make DESTDIR=$pkgdir install
|
|
rm $pkgdir/usr/share/info/dir
|
|
}
|