You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
772 B
38 lines
772 B
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
USE_RUBY="ruby23 ruby24 ruby25 ruby26"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC=""
|
|
RUBY_FAKEGEM_TASK_TEST=""
|
|
RUBY_FAKEGEM_EXTRADOC="README.md"
|
|
|
|
inherit multilib ruby-fakegem
|
|
|
|
DESCRIPTION="Liquid performance extension in C"
|
|
HOMEPAGE="https://github.com/Shopify/liquid-c"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="4"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
MY_PN=${PN/-/_}
|
|
|
|
ruby_add_rdepend ">=dev-ruby/liquid-3.0.0:*"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e "s/-Werror//" ext/${MY_PN}/extconf.rb || die
|
|
sed -i -e "/[Bb]undler/d" Rakefile || die
|
|
}
|
|
|
|
each_ruby_configure() {
|
|
${RUBY} -Cext/${MY_PN} extconf.rb || die
|
|
}
|
|
|
|
each_ruby_compile() {
|
|
emake V=1 -Cext/${MY_PN}
|
|
cp ext/${MY_PN}/${MY_PN}$(get_modname) lib/ || die
|
|
}
|