blob: c784160b8cdd04a92ab47c0dd19d06798e992031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $Id: PKGBUILD 55390 2011-09-11 18:27:38Z shusmann $
# Maintainer: stefan-husmann@t-online.de
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
pkgname=librep
pkgver=0.92.1b
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')
install=${pkgname}.install
options=('!emptydirs' '!libtool')
source=(http://download.tuxfamily.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
sha1sums=('f75e1197646bbf1594fc4765802aab0bffe1bb02')
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
}
|