summaryrefslogtreecommitdiff
path: root/dev-scheme/owl-lisp/owl-lisp-0.2.2.ebuild
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2023-10-30 20:37:58 +0100
committerMaciej Barć <xgqt@gentoo.org>2023-10-31 00:15:55 +0100
commitb1d56240636822d53adce47672f25e943ef6cf40 (patch)
tree285800ba8007c15a5bc623e36f17a5116ac421d3 /dev-scheme/owl-lisp/owl-lisp-0.2.2.ebuild
parent467b53be7e33f8c51436b04116c94f331131f527 (diff)
downloadgentoo-b1d56240636822d53adce47672f25e943ef6cf40.tar.gz
gentoo-b1d56240636822d53adce47672f25e943ef6cf40.tar.bz2
gentoo-b1d56240636822d53adce47672f25e943ef6cf40.zip
dev-scheme/owl-lisp: bump to 0.2.2
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-scheme/owl-lisp/owl-lisp-0.2.2.ebuild')
-rw-r--r--dev-scheme/owl-lisp/owl-lisp-0.2.2.ebuild49
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-scheme/owl-lisp/owl-lisp-0.2.2.ebuild b/dev-scheme/owl-lisp/owl-lisp-0.2.2.ebuild
new file mode 100644
index 000000000000..2d6148517bdf
--- /dev/null
+++ b/dev-scheme/owl-lisp/owl-lisp-0.2.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Purely functional dialect of Scheme"
+HOMEPAGE="https://haltp.org/posts/owl.html
+ https://gitlab.com/owl-lisp/owl/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://gitlab.com/owl-lisp/owl.git"
+else
+ SRC_URI="https://gitlab.com/owl-lisp/owl/-/archive/v${PV}/owl-v${PV}.tar.bz2"
+ S="${WORKDIR}/owl-v${PV}"
+
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+PATCHES=( "${FILESDIR}/${PN}-0.2.1-make-no-test.patch" )
+
+src_prepare() {
+ default
+
+ sed -i 's|make bin/vm|$(MAKE) bin/vm|g' "${S}"/Makefile || die
+
+ # Skip "tests/char-ready.sh", "does not work in background subshell".
+ rm tests/char-ready.sh || die
+}
+
+src_compile(){
+ emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" owl
+}
+
+src_install() {
+ exeinto /usr/bin
+ doexe bin/ol
+ newexe bin/vm ovm
+
+ doman doc/*.1
+
+ einstalldocs
+}