mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:47:13 +08:00
28 lines
790 B
Bash
28 lines
790 B
Bash
# $Id: PKGBUILD 72741 2010-03-19 11:30:30Z allan $
|
|
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
|
|
|
|
pkgname=librep
|
|
pkgver=0.90.5
|
|
pkgrel=2
|
|
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
|
|
}
|