Compare commits
No commits in common. "f2973f0536feac668f291077e64a789db3f928bd" and "6e748c614c466181b0909f513a50cc1241b44a40" have entirely different histories.
f2973f0536
...
6e748c614c
|
@ -1,21 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
PREFIX=$(realpath $(dirname $0))
|
|
||||||
|
|
||||||
mkdir -p build
|
|
||||||
cd build
|
|
||||||
|
|
||||||
# Download and extract ruby
|
|
||||||
curl "https://cache.ruby-lang.org/pub/ruby/3.0/ruby-3.0.1.tar.gz" -o ruby.tar.gz
|
|
||||||
tar xzf ruby.tar.gz --strip-components=1
|
|
||||||
rm ruby.tar.gz
|
|
||||||
|
|
||||||
# Autoconf based
|
|
||||||
./configure --prefix "$PREFIX"
|
|
||||||
make -j$(nproc)
|
|
||||||
make install -j$(nproc)
|
|
||||||
|
|
||||||
# Cleanup
|
|
||||||
cd ..
|
|
||||||
rm -rf build
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Path to ruby binary
|
|
||||||
export PATH=$PWD/bin:$PATH
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"language": "ruby",
|
|
||||||
"version": "3.0.1",
|
|
||||||
"aliases": ["ruby3", "rb"]
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Run ruby script with args
|
|
||||||
ruby "$@"
|
|
|
@ -1 +0,0 @@
|
||||||
puts("OK")
|
|
Loading…
Reference in New Issue