diff options
Diffstat (limited to 'community-testing/librep/PKGBUILD')
-rw-r--r-- | community-testing/librep/PKGBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/community-testing/librep/PKGBUILD b/community-testing/librep/PKGBUILD deleted file mode 100644 index 7885d3d71..000000000 --- a/community-testing/librep/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 69946 2012-04-26 21:35:09Z allan $ -# Maintainer: Alexander Rødseth <rodseth@gmail.com> -# Contributor: stefan-husmann@t-online.de -# Contributor: Juergen Hoetzel <juergen@archlinux.org> - -pkgname=librep -pkgver=0.92.2 -pkgrel=2 -pkgdesc="Lisp system for Sawfish" -license=('GPL2') -arch=('x86_64' 'i686') -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") -sha256sums=('a54422b42a34bc9d659130b83d2315ae3c3cb74ab6c2a6052459011d05f38740') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - ./configure --disable-static \ - --prefix=/usr \ - --libexecdir="/usr/lib/$pkgname" \ - --with-readline - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: |