CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
ruby: updated to 3.0.0
[ports/opt-arm64.git] / ruby / Pkgfile
CommitLineData
096202f2
VM
1# Maintainer: Juergen Daubert, jue at crux dot nu
2# Description: Ruby interpreter
3# URL: http://www.ruby-lang.org
4# Depends on: gdbm libgmp openssl zlib libffi libyaml
5
6name=ruby
ba795222 7version=3.0.0
096202f2
VM
8release=1
9source=(http://cache.ruby-lang.org/pub/$name/${version%.*}/$name-$version.tar.xz)
10
11build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --enable-shared \
16 --disable-install-doc \
17 --with-ruby-version=minor
18
19 make
20 make DESTDIR=$PKG install
21}