mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2026-05-06 15:49:53 -04:00
a2a7031d23
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
31 lines
754 B
Bash
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
|
|
}
|