summaryrefslogtreecommitdiff
blob: af941d03bf0d1f77ea96a71f341a6063fa0ae307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit ruby

DESCRIPTION="Fastest ruby csv parser"
HOMEPAGE="http://raa.ruby-lang.org/project/csvscan/"
SRC_URI="http://www.moonwolf.com/ruby/archive/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="virtual/ruby"
RDEPEND="virtual/ruby"

src_compile() {
	ruby setup.rb config || die "config failed"
	ruby setup.rb setup || die "setup failed"
}

src_install() {
	ruby setup.rb install --prefix="${D}" || die "install failed"
}