メインメニューを開く

差分

IronRuby

438 バイト追加, 2012年3月9日 (金) 04:28
4. 出来上がったファイルをコピーする。
※インストール先は「/opt/ironruby」ディレクトリになっているので適宜書き換える。
<source lang="bash">
$ cd bin/Release
$ for f in *.exe *.dll *.config; do \
install $f /opt/ironruby/lib; \
done
$ mkdir -p /opt/ironruby/bin
</source>
 
 
5. ショートカット用のシェルスクリプトを作っておく。
 
<source lang="bash">
$ mkdir /opt/ironruby/bin
$ echo '#!/bin/sh'$'\nexec /opt/novell/mono/bin/mono $MONO_OPTIONS "/opt/ironruby/lib/ir.exe" "$@"' > /opt/ironruby/bin/ir
$ chmod 755 /opt/ironruby/bin/ir
</source>
匿名利用者