We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86f7212 commit ef56328Copy full SHA for ef56328
.packager
@@ -56,9 +56,11 @@ Packager.build do
56
build [
57
'wget http://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.5.tar.gz',
58
'/bin/tar -zxf ruby-2.1.5.tar.gz',
59
- './ruby-2.1.5/configure --prefix=$PKG_DIR --with-opt-dir=$PKG_DIR',
60
- 'make -C ./ruby-2.1.5',
61
- 'make -C ./ruby-2.1.5 install'
+ 'mv ruby-2.1.5/* .',
+ 'autoconf',
+ './configure --prefix=$PKG_DIR --with-opt-dir=$PKG_DIR --disable-install-doc --enable-shared',
62
+ 'make',
63
+ 'make install'
64
]
65
end
66
0 commit comments