diff options
Diffstat (limited to 'community/librep/PKGBUILD')
-rw-r--r-- | community/librep/PKGBUILD | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/community/librep/PKGBUILD b/community/librep/PKGBUILD index 6d795f55a..25c1988a7 100644 --- a/community/librep/PKGBUILD +++ b/community/librep/PKGBUILD @@ -1,33 +1,34 @@ -# $Id: PKGBUILD 59710 2011-11-29 13:35:00Z stephane $ -# Maintainer: stefan-husmann@t-online.de +# $Id: PKGBUILD 64157 2012-02-09 14:54:32Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: stefan-husmann@t-online.de # Contributor: Juergen Hoetzel <juergen@archlinux.org> - pkgname=librep pkgver=0.92.1b -pkgrel=2 -pkgdesc="A Lisp system for UNIX" +pkgrel=3 +pkgdesc="Lisp system for Sawfish" license=('GPL2') -arch=('i686' 'x86_64') +arch=('x86_64' 'i686') url="http://sawfish.wikia.com/wiki/Librep" depends=('gmp' 'gdbm' 'libffi') -install=${pkgname}.install +install=$pkgname.install options=('!emptydirs' '!libtool') -source=(http://download.tuxfamily.org/${pkgname}/${pkgname}-${pkgver}.tar.xz) -sha1sums=('f75e1197646bbf1594fc4765802aab0bffe1bb02') +source=("http://download.tuxfamily.org/$pkgname/$pkgname-$pkgver.tar.xz") +sha256sums=('aedca2716252a1ff2256aca321cce35646b795840b65a3c481708c04a6fd7e3e') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" + ./configure --disable-static \ --prefix=/usr \ - --libexecdir=/usr/lib/$pkgname \ + --libexecdir="/usr/lib/$pkgname" \ --with-readline make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" - # create some directories or make install fails -# install -d $pkgdir/usr/{share/aclocal,lib/pkgconfig} - make DESTDIR="${pkgdir}" install + make DESTDIR="$pkgdir" install } + +# vim:set ts=2 sw=2 et: |