Files
guru/dev-nim/opengl/opengl-1.2.9.ebuild
Suleyman Farajli 13a4b56982 dev-nim/opengl: new package, add 1.2.9
Signed-off-by: Suleyman Farajli <suleyman@farajli.net>
2025-11-17 13:59:28 +00:00

28 lines
469 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit nimble
DESCRIPTION="x11 wrapper for Nim"
HOMEPAGE="https://github.com/nim-lang/opengl"
SRC_URI="https://github.com/nim-lang/opengl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples"
DEPEND="dev-nim/x11"
src_install() {
nimble_src_install
if use examples; then
dodoc -r examples
fi
}