mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
18 lines
385 B
Plaintext
Executable File
18 lines
385 B
Plaintext
Executable File
# description : Ruby development environment
|
|
# depends : gdbm readline ncurses openssl libffi zlib yaml libgmp
|
|
|
|
name=ruby
|
|
version=3.2.2
|
|
release=1
|
|
source="https://cache.ruby-lang.org/pub/$name/${version%.*}/$name-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--disable-install-doc
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|