opt/ruby/Pkgfile

26 lines
627 B
Plaintext
Raw Normal View History

2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2006-02-23 16:26:10 +01:00
# Description: Ruby interpreter
# URL: http://www.ruby-lang.org
# Depends on: gdbm ncurses openssl readline zlib libffi libyaml
2006-02-23 16:26:10 +01:00
name=ruby
2014-02-24 13:38:35 +01:00
version=1.9.3-p545
release=1
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 16:26:10 +01: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 16:26:10 +01:00
./configure --prefix=/usr \
2006-08-26 15:13:31 +02:00
--mandir=/usr/man \
2006-02-23 16:26:10 +01: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 16:26:10 +01:00
}