mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 06:44:36 +08:00
29 lines
824 B
Bash
29 lines
824 B
Bash
|
# $Id: PKGBUILD 64687 2010-01-21 21:50:47Z juergen $
|
||
|
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
|
||
|
|
||
|
pkgname=librep
|
||
|
pkgver=0.90.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="A Lisp system for UNIX"
|
||
|
depends=('gmp' 'gdbm' 'libffi' 'bash' 'ncurses>=5.6-7')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/librep/librep-$pkgver.tar.bz2)
|
||
|
md5sums=('76e766d4f7034ee293f4405871ab34d3')
|
||
|
license=('GPL2')
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://sourceforge.net/projects/librep"
|
||
|
install=librep.install
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --disable-static \
|
||
|
--prefix=/usr \
|
||
|
--libexecdir=/usr/lib/$pkgname \
|
||
|
--with-readline || return 1
|
||
|
make || return 1
|
||
|
|
||
|
# create some directories or make install fails
|
||
|
install -d $pkgdir/usr/{share/aclocal,lib/pkgconfig}
|
||
|
make DESTDIR=$pkgdir install
|
||
|
rm $pkgdir/usr/share/info/dir
|
||
|
}
|