pantry/projects/ruby-lang.org/package.yml

57 lines
1,010 B
YAML
Raw Normal View History

2022-10-03 18:37:28 +03:00
distributable:
2023-01-03 19:09:13 +03:00
url: https://cache.ruby-lang.org/pub/ruby/{{version.marketing}}/ruby-{{version}}.tar.xz
2022-10-03 18:37:28 +03:00
strip-components: 1
versions:
2023-01-03 19:09:13 +03:00
github: ruby/ruby/tags
2022-10-03 18:37:28 +03:00
dependencies:
openssl.org: ^1.1
pyyaml.org: ^0.2
zlib.net: 1
build:
dependencies:
freedesktop.org/pkg-config: ^0.29
gnu.org/gettext: ^0.21
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
script: |
2022-11-02 23:38:19 +03:00
./configure --prefix="{{prefix}}" --enable-load-relative
2022-10-03 18:37:28 +03:00
make --jobs {{hw.concurrency}} install
2022-11-02 23:38:19 +03:00
cd "{{prefix}}"/bin
# we provide these as `rubygems.org`
rm bundle bundler gem rake rbs rdbg typeprof
for shim in $shims; do
sed -i.bak -e 's_#!{{prefix}}/bin/ruby_#!/usr/bin/env ruby_' $shim
rm $shim.bak
done
env:
shims:
- erb
- irb
- racc
- rdoc
- ri
test: |
ruby -e 'puts "Hello World!"'
provides:
- bin/erb
- bin/irb
- bin/racc
- bin/rdoc
- bin/ri
- bin/ruby
interprets:
extensions: rb
args: ruby
2022-11-02 23:38:19 +03:00
companions:
rubygems.org: '*'