commit: 373e5f873af188feefa92dad5a5a213385b51354
parent 3a9254596b2c4fcfc00962a31e13bcf645905caf
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Thu, 31 Oct 2024 21:09:56 +0100
dev-hare/hare-sdl2: new package, add 9999
Diffstat:
1 file changed, 26 insertions(+), 0 deletions(-)
diff --git a/dev-hare/hare-sdl2/hare-sdl2-9999.ebuild b/dev-hare/hare-sdl2/hare-sdl2-9999.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit git-r3
+
+DESCRIPTION="SDL2 bindings for Hare"
+HOMEPAGE="https://sr.ht/~sircmpwn/hare-sdl2"
+EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare-sdl2"
+LICENSE="MPL-2.0"
+SLOT="0"
+
+DEPEND="
+ dev-lang/hare
+ media-libs/libsdl2
+ media-libs/sdl2-image
+ media-libs/sdl2-mixer
+"
+RDEPEND="${DEPEND}"
+
+src_install() {
+ # No install target in Makefile
+ insinto "${EROOT}/usr/src/hare/third-party/"
+ doins -r sdl2
+}