mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 07:29:19 +02:00
27 lines
773 B
Bash
27 lines
773 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="History.md README.md"
|
|
RUBY_FAKEGEM_GEMSPEC="rake-compiler-dock.gemspec"
|
|
|
|
# The test suite makes use of containers only.
|
|
RUBY_FAKEGEM_RECIPE_TEST="none"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Easy to use and reliable cross compiler environment for building binary gems"
|
|
HOMEPAGE="https://github.com/rake-compiler/rake-compiler-dock"
|
|
SRC_URI="https://github.com/rake-compiler/rake-compiler-dock/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="$(ver_cut 1)"
|
|
KEYWORDS="~amd64"
|
|
|
|
all_ruby_prepare() {
|
|
sed -e 's/git ls-files -z/find * -print0/' \
|
|
-i ${RUBY_FAKEGEM_GEMSPEC} || die
|
|
}
|