# $Id: PKGBUILD 46413 2011-05-07 10:04:19Z shusmann $ # Maintainer: stefan-husmann@t-online.de # Contributor: Juergen Hoetzel pkgname=librep pkgver=0.92.0 pkgrel=1 pkgdesc="A Lisp system for UNIX" license=('GPL2') arch=('i686' 'x86_64' 'mips64el') url="http://sawfish.wikia.com/wiki/Librep" depends=('gmp' 'gdbm' 'libffi') install=${pkgname}.install options=('!emptydirs' '!libtool') source=(http://download.tuxfamily.org/${pkgname}/${pkgname}-${pkgver}.tar.xz) sha1sums=('70f7b641cf3628443fea77a1191d9eb93a86d700') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --disable-static \ --prefix=/usr \ --libexecdir=/usr/lib/$pkgname \ --with-readline make } package() { cd "${srcdir}/${pkgname}-${pkgver}" # create some directories or make install fails # install -d $pkgdir/usr/{share/aclocal,lib/pkgconfig} make DESTDIR=${pkgdir} install }