diff options
Diffstat (limited to 'community/librep/PKGBUILD')
-rw-r--r-- | community/librep/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/librep/PKGBUILD b/community/librep/PKGBUILD new file mode 100644 index 000000000..883f3b7fe --- /dev/null +++ b/community/librep/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 42084 2011-03-13 17:47:35Z shusmann $ +# Maintainer: stefan-husmann@t-online.de +# Contributor: Juergen Hoetzel <juergen@archlinux.org> + +pkgname=librep +pkgver=0.91.1 +pkgrel=1 +pkgdesc="A Lisp system for UNIX" +license=('GPL2') +arch=('i686' 'x86_64') +url="http://sawfish.wikia.com/wiki/Librep" +depends=('gmp' 'gdbm' 'libffi' 'bash') +install=${pkgname}.install +options=('libtool' '!emptydirs') +source=(http://download.tuxfamily.org/${pkgname}/${pkgname}-${pkgver}.tar.xz) +sha1sums=('6cba5bdb145814c4985b2f1939d161b76f494b7c') + +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 +} |