summaryrefslogtreecommitdiff
path: root/config/software/asdf-ruby-2-6-3.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/software/asdf-ruby-2-6-3.rb')
-rw-r--r--config/software/asdf-ruby-2-6-3.rb38
1 files changed, 0 insertions, 38 deletions
diff --git a/config/software/asdf-ruby-2-6-3.rb b/config/software/asdf-ruby-2-6-3.rb
deleted file mode 100644
index 6c0f786..0000000
--- a/config/software/asdf-ruby-2-6-3.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-name "asdf-ruby-2-6-3"
-
-license "BSD-2-Clause"
-license_file "BSDL"
-license_file "COPYING"
-license_file "LEGAL"
-skip_transitive_dependency_licensing true
-
-default_version "2.6.3"
-source url: "https://cache.ruby-lang.org/pub/ruby/2.6/ruby-#{version}.tar.gz", sha256: "577fd3795f22b8d91c1d4e6733637b0394d4082db659fccf224c774a2b1c82fb"
-relative_path "ruby-#{version}"
-
-dependency "zlib"
-dependency "openssl"
-dependency "libffi"
-dependency "libyaml"
-
-env = with_standard_compiler_flags(with_embedded_path)
-env["CFLAGS"] << " -O3 -g -pipe"
-
-build do
- configure_command = [
- "--disable-dtrace",
- "--disable-install-doc",
- "--disable-install-rdoc",
- "--disable-jit-support",
- "--enable-shared",
- "--prefix=#{install_dir}/installs/ruby/#{version}",
- "--with-out-ext=dbm,readline",
- "--without-gdbm",
- "--without-gmp",
- "--without-valgrind",
- "--without-tk",
- ]
- configure(*configure_command, env: env)
- make "-j #{workers}", env: env
- make "-j #{workers} install", env: env
-end