mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-05-12 20:57:29 -07:00
38 lines
844 B
Bash
38 lines
844 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
USE_RUBY="ruby20 ruby21 ruby22"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC=""
|
|
RUBY_FAKEGEM_EXTRADOC="ChangeLog README TODO"
|
|
|
|
RUBY_FAKEGEM_TASK_TEST=""
|
|
|
|
inherit multilib ruby-fakegem
|
|
|
|
DESCRIPTION="Ruby binding to libmagic"
|
|
HOMEPAGE="https://github.com/blackwinter/ruby-filemagic"
|
|
|
|
LICENSE="Ruby"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~hppa ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
|
|
IUSE=""
|
|
|
|
DEPEND="${DEPEND} sys-apps/file"
|
|
RDEPEND="${RDEPEND} sys-apps/file"
|
|
|
|
each_ruby_configure() {
|
|
${RUBY} -Cext/filemagic extconf.rb || die
|
|
}
|
|
|
|
each_ruby_compile() {
|
|
emake V=1 -Cext/filemagic
|
|
mv ext/filemagic/ruby_filemagic$(get_modname) lib/filemagic/ || die
|
|
}
|
|
|
|
each_ruby_test() {
|
|
${RUBY} -Ctest -I../lib filemagic_test.rb || die
|
|
}
|