Files
guru/dev-nim/x11/x11-1.2.ebuild
Suleyman Farajli bcbe6e322a dev-nim/x11: new package, add 1.2
Signed-off-by: Suleyman Farajli <suleyman@farajli.net>
2025-11-17 13:45:30 +00:00

26 lines
441 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/x11"
SRC_URI="https://github.com/nim-lang/x11/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples"
src_install() {
nimble_src_install
if use examples; then
dodoc -r examples
fi
}