environment/recipes/ruby/debian.yml

25 lines
394 B
YAML
Raw Normal View History

2025-08-01 12:52:57 +02:00
packages:
- autoconf
- bison
- build-essential
- libssl-dev
- libyaml-dev
- libreadline6-dev
- zlib1g-dev
- libncurses5-dev
- libffi-dev
- libgdbm6
- libgdbm-dev
- libdb-dev
- ruby
repository:
url: https://github.com/ruby/ruby.git
branch: v3_4_5
steps:
- ./autogen.sh
- ./configure --prefix=$PREFIX
- make -j"$(nproc)"
- make install