blob: 760a49d47376c9aaa83d49d092bce5048ab785b8 (
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
25
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-syck/ruby-syck-0.25.ebuild,v 1.1 2003/05/08 09:54:29 twp Exp $
MY_P=syck-${PV}
DESCRIPTION="An extension for reading YAML swiftly in Ruby"
HOMEPAGE="http://www.whytheluckystiff.net/syck/"
SRC_URI="mirror://sourceforge/yaml4r/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
DEPEND="dev-lang/ruby =dev-libs/syck-${PV}"
S=${WORKDIR}/${MY_P}
src_compile() {
cd ext/ruby
ruby install.rb config --prefix=/usr || die
ruby install.rb setup || die
}
src_install() {
cd ext/ruby &&
ruby install.rb config --prefix=${D}/usr || die
ruby install.rb install || die
}
|