mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-28 12:51:44 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer:
|
|
pkgname=clisp
|
|
pkgver=2.49
|
|
pkgrel=0
|
|
pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
|
|
url="http://clisp.cons.org/"
|
|
arch=""
|
|
license="GPL"
|
|
depends=""
|
|
depends_dev="readline-dev libsigsegv ffcall ncurses-dev"
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://downloads.sourceforge.net/sourceforge/clisp/clisp-$pkgver.tar.bz2
|
|
no-page.h.patch"
|
|
_builddir="$srcdir"/clisp-$pkgver
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
update_config_sub || return 1
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
ulimit -s 16384
|
|
_configure="--prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi \
|
|
--mandir=/usr/share/man --infodir=/usr/share/info"
|
|
./configure $_configure || return 1
|
|
cd src
|
|
./makemake $_configure > Makefile
|
|
make -j1 || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"/src
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="1962b99d5e530390ec3829236d168649 clisp-2.49.tar.bz2
|
|
a8456d6a45340e091055b58c306022ef no-page.h.patch"
|
|
sha256sums="8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890 clisp-2.49.tar.bz2
|
|
2d3bd8dde82e5cdf0a3825a0b67df110e20e19541308509d1165029c589b3d0a no-page.h.patch"
|
|
sha512sums="eef66fc85199a2c283b616db61bf67ff103eeb0f19fa907da48994dc790b6f5f8d0c74fb3bd723c6b827c0ff3cfd89fa6ba67934fc669ed5d5249044b5140d81 clisp-2.49.tar.bz2
|
|
86273c5d5d05a8d41ab6311192e0c757d3f7fe4d78546590830aa00f8c2f170fcb08f66ea739ae8834cec00cdf0f6a20824eb6a3d0f6df97be405c26b1cc5d39 no-page.h.patch"
|