mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-13 00:10:04 +03:00
50 lines
970 B
Bash
50 lines
970 B
Bash
# 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
|
|
}
|