mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
31 lines
871 B
Bash
31 lines
871 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=clisp
|
|
pkgver=2.49
|
|
pkgrel=4
|
|
pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://clisp.cons.org/"
|
|
depends=('readline' 'libsigsegv')
|
|
provides=('common-lisp')
|
|
makedepends=('ffcall')
|
|
options=('!makeflags' '!emptydirs')
|
|
source=(http://downloads.sourceforge.net/sourceforge/clisp/clisp-${pkgver}.tar.bz2)
|
|
md5sums=('1962b99d5e530390ec3829236d168649')
|
|
|
|
build() {
|
|
cd $srcdir/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --with-readline --with-ffcall src
|
|
cd src
|
|
./makemake --prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi > Makefile
|
|
make
|
|
sed -i 's,http://www.lisp.org/HyperSpec/,http://www.lispworks.com/reference/HyperSpec/,g' config.lisp
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/${pkgname}-${pkgver}/src
|
|
make DESTDIR=$pkgdir install
|
|
}
|