2
0
mirror of https://github.com/gentoo-mirror/gentoo.git synced 2026-02-12 00:02:41 +03:00
Files
gentoo/dev-ruby/curses/curses-1.5.3.ebuild
Hans de Graaff a2a7031d23 dev-ruby/curses: enable ruby40
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
2026-01-01 16:20:24 +01:00

31 lines
754 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby32 ruby33 ruby34 ruby40"
RUBY_FAKEGEM_EXTRADOC="README.md"
RUBY_FAKEGEM_RECIPE_TEST="none"
RUBY_FAKEGEM_EXTENSIONS=(ext/curses/extconf.rb)
inherit ruby-fakegem
DESCRIPTION="Ruby binding for curses, ncurses, and PDCurses"
HOMEPAGE="https://github.com/ruby/curses"
LICENSE="|| ( Ruby BSD-2 )"
SLOT="1"
KEYWORDS="~amd64 ~riscv ~x86"
DEPEND="sys-libs/ncurses:0"
RDEPEND="sys-libs/ncurses:0"
each_ruby_test() {
# No specs so we use the smoketest that upstream use in CI:
# https://github.com/ruby/curses/blob/master/.github/workflows/ubuntu.yml#L26
${RUBY} -Ilib:ext/curses:. -r curses -e 'puts Curses::VERSION' || die
}