dev-lang/harec: add 0_pre20230611

Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
This commit is contained in:
Haelwenn (lanodan) Monnier
2023-06-15 21:11:36 +02:00
parent 41abd3344f
commit 7f008baf48
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
if [[ "${PV}" = "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/harec"
S="${WORKDIR}/${P}/build"
else
EGIT_COMMIT="174aef484c0b0067f0a131dc52ee05af1a0e5027"
MY_P="${PN}-${EGIT_COMMIT}"
SRC_URI="https://git.sr.ht/~sircmpwn/harec/archive/${EGIT_COMMIT}.tar.gz -> ${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}/build"
KEYWORDS="~amd64 ~arm64 ~riscv"
fi
DESCRIPTION="The Hare compiler"
HOMEPAGE="https://harelang.org/"
LICENSE="GPL-3"
SLOT="0"
DEPEND=">=sys-devel/qbe-1.1"
RDEPEND="${DEPEND}"
src_unpack() {
default
[[ "${PV}" = "9999" ]] && git-r3_src_unpack
mkdir "${S}" || die
}
src_prepare() {
default
sed -i 's; -Werror ; ;' ../config.sh || die
}
src_configure() {
../configure --prefix="/usr" --libdir="/usr/$(get_libdir)" || die
}