blob: 883f3b7fefea452ad82a0055cf8d16b1ba1e63e1 (
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 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
}
|