0
0
Fork 0
haikuports/dev-lisp/ecl/ecl-16.1.3.recipe

79 lines
1.8 KiB
Bash
Raw Permalink Normal View History

SUMMARY="Embeddable Common-Lisp interpreter"
DESCRIPTION="ECL (Embeddable Common-Lisp) is an interpreter of the \
Common-Lisp language as described in the X3J13 Ansi specification, featuring \
CLOS (Common-Lisp Object System), conditions, loops, etc, plus a translator \
to C, which can produce standalone executables."
2018-09-17 15:01:50 +00:00
HOMEPAGE="https://www.ecl.org"
COPYRIGHT="2015 Daniel Kochmański
2017-05-09 10:41:46 +00:00
2000 Juan Jose Garcia Ripoll
1990, 1991, 1993 Giuseppe Attardi
1984 Taiichi Yuasa and Masami Hagiya"
LICENSE="GNU LGPL v2.1"
2021-08-16 11:12:36 +00:00
REVISION="4"
SOURCE_URI="https://common-lisp.net/project/ecl/static/files/release/ecl-$portVersion.tgz"
CHECKSUM_SHA256="76a585c616e8fa83a6b7209325a309da5bc0ca68e0658f396f49955638111254"
ARCHITECTURES="!all x86"
SECONDARY_ARCHITECTURES="?x86"
PROVIDES="
ecl$secondaryArchSuffix = $portVersion
cmd:ecl$secondaryArchSuffix
cmd:ecl_config$secondaryArchSuffix
devel:libecl$secondaryArchSuffix
2018-08-08 14:18:18 +00:00
lib:libecl$secondaryArchSuffix
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libatomic_ops$secondaryArchSuffix
lib:libffi$secondaryArchSuffix
2017-05-09 10:41:46 +00:00
lib:libgc$secondaryArchSuffix
lib:libgmp$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libatomic_ops$secondaryArchSuffix
devel:libffi$secondaryArchSuffix
2017-05-09 10:41:46 +00:00
devel:libgc$secondaryArchSuffix
devel:libgmp$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:autoreconf
2018-08-08 14:18:18 +00:00
cmd:gcc$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
cmd:which
"
BUILD()
{
cd src
libtoolize --force --copy --install
autoreconf -fi
cd ..
2017-05-09 10:41:46 +00:00
runConfigure ./configure \
--enable-threads=no \
--with-dffi=system \
--enable-boehm=system
2017-05-09 10:41:46 +00:00
# doesn't work with $jobArgs
make
}
INSTALL()
{
make install
for i in COPYING LICENSE TAGS ecl_min dpp build-stamp; do
rm $prefix/lib/ecl-$portVersion/$i
done
}
TEST()
{
# 2 tests fail, 1 crashes in FFI
make check
}