environment/recipes/ruby/macos.yml
2025-08-03 14:47:59 +02:00

22 lines
469 B
YAML

packages:
- openssl
- readline
- libyaml
- libffi
- autoconf
- automake
- libtool
- pkg-config
repository:
url: https://github.com/ruby/ruby.git
branch: v3_0_0
steps:
- autoconf
- ./configure --prefix=$PREFIX
# --with-openssl-dir=$(brew --prefix openssl)
# --with-readline-dir=$(brew --prefix readline)
# --with-yaml-dir=$(brew --prefix libyaml)
- make -j$(sysctl -n hw.ncpu)
- make install