commit: 42feb8ee874511f6f82a028768130fb62bc57f77
parent 5eaf91de5c9670149670950bfe22435d83206295
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sun, 17 Apr 2022 05:14:32 +0200
app-emulation/uxn: new pkg
Diffstat:
1 file changed, 30 insertions(+), 0 deletions(-)
diff --git a/app-emulation/uxn/uxn-9999.ebuild b/app-emulation/uxn/uxn-9999.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2022 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
+# 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/~rabbits/uxn"
+else
+ KEYWORDS=""
+fi
+
+DESCRIPTION="Assembler and emulator for the Uxn stack-machine, written in ANSI C"
+HOMEPAGE="https://sr.ht/~rabbits/uxn/"
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND="
+ media-libs/libsdl2
+"
+RDEPEND="${DEPEND}"
+
+src_compile() {
+ ./build.sh --no-run || die
+}
+
+src_install() {
+ einstalldocs
+ dobin bin/*
+}