opt/ruby/Pkgfile

22 lines
581 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Maintainer: J<>rgen Daubert, juergen dot daubert at t-online dot de
# Description: Ruby interpreter
# URL: http://www.ruby-lang.org
# Depends on: db, gdbm, ncurses, openssl, readline, zlib
name=ruby
2007-03-13 17:10:27 +01:00
version=1.8.6
release=1
source=(ftp://ftp.ruby-lang.org/pub/$name/1.8/$name-$version.tar.bz2 \
2007-03-13 17:10:27 +01:00
$name-arch.patch)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
2007-03-13 17:10:27 +01:00
patch -p1 < $SRC/$name-arch.patch
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 \
--enable-pthread
make
make DESTDIR=$PKG install
}