mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-02 15:21:43 +01:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer: Will Sinatra <wpsinatra@gmail.com>
|
|
pkgname=clisp
|
|
pkgver=2.49
|
|
pkgrel=5
|
|
pkgdesc="ANSI Common Lisp interpreter, compiler and debugger"
|
|
url="https://clisp.sourceforge.io/"
|
|
arch="x86_64"
|
|
license="GPL-2.0-only"
|
|
makedepends="libsigsegv-dev ffcall ncurses-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://downloads.sourceforge.net/sourceforge/clisp/clisp-$pkgver.tar.bz2
|
|
no-page.h.patch"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
ulimit -s 16384
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-ffcall \
|
|
--with-dynamic-ffi \
|
|
--without-dynamic-modules \
|
|
--disable-mmap \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
"$builddir"
|
|
make -j1
|
|
}
|
|
|
|
package() {
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="eef66fc85199a2c283b616db61bf67ff103eeb0f19fa907da48994dc790b6f5f8d0c74fb3bd723c6b827c0ff3cfd89fa6ba67934fc669ed5d5249044b5140d81 clisp-2.49.tar.bz2
|
|
86273c5d5d05a8d41ab6311192e0c757d3f7fe4d78546590830aa00f8c2f170fcb08f66ea739ae8834cec00cdf0f6a20824eb6a3d0f6df97be405c26b1cc5d39 no-page.h.patch"
|