2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
# Description: Ruby interpreter
|
|
|
|
# URL: http://www.ruby-lang.org
|
|
|
|
# Depends on: db, gdbm, ncurses, openssl, readline, zlib
|
|
|
|
|
|
|
|
name=ruby
|
2012-02-17 13:46:03 +01:00
|
|
|
version=1.9.3-p125
|
2012-02-18 09:50:24 +01:00
|
|
|
release=2
|
2009-06-11 21:37:27 +02:00
|
|
|
source=(ftp://ftp.ruby-lang.org/pub/$name/1.9/$name-$version.tar.bz2 \
|
2011-11-07 12:00:13 +01:00
|
|
|
$name-arch.patch)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
2008-07-07 10:07:02 +02:00
|
|
|
|
2010-07-04 13:19:06 +02:00
|
|
|
patch -p0 -i $SRC/$name-arch.patch
|
2011-11-07 10:52:06 +01:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
./configure --prefix=/usr \
|
2006-08-26 13:13:31 +00:00
|
|
|
--mandir=/usr/man \
|
2006-02-23 15:26:10 +00:00
|
|
|
--enable-shared \
|
2009-06-11 21:37:27 +02:00
|
|
|
--disable-install-doc \
|
2011-11-07 10:52:06 +01:00
|
|
|
--with-ruby-version=minor
|
2008-07-07 10:07:02 +02:00
|
|
|
|
2010-08-30 18:07:06 +02:00
|
|
|
make
|
2009-06-11 21:37:27 +02:00
|
|
|
make DESTDIR=$PKG install
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|