Files
ports/main/ruby/spkgbuild
2023-03-31 13:22:04 +00:00

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
}