logo

overlay

My own overlay for experimentations, use with caution, no support is provided git clone https://hacktivis.me/git/overlay.git
commit: 3a9254596b2c4fcfc00962a31e13bcf645905caf
parent e5b3f6054ad3e3a44e4539402530673025bda0a8
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu, 31 Oct 2024 20:59:14 +0100

dev-hare/hare-glm: new package, add 9999

Diffstat:

Adev-hare/hare-glm/hare-glm-9999.ebuild20++++++++++++++++++++
1 file changed, 20 insertions(+), 0 deletions(-)

diff --git a/dev-hare/hare-glm/hare-glm-9999.ebuild b/dev-hare/hare-glm/hare-glm-9999.ebuild @@ -0,0 +1,20 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit git-r3 + +DESCRIPTION="OpenGL-compatible linear algebra library for Hare" +HOMEPAGE="https://sr.ht/~vladh/hare-glm" +EGIT_REPO_URI="https://git.sr.ht/~vladh/hare-glm" +LICENSE="MIT" +SLOT="0" + +RDEPEND="dev-lang/hare" + +src_install() { + # No Makefile present + insinto "${EROOT}/usr/src/hare/third-party/" + doins -r glm +}