2010-02-28
[Lua][Mac][setup]MacでLuaを使う
上記Luaの公式サイトからLua 5.1.4をダウンロード。
wget http://www.lua.org/ftp/lua-5.1.4.tar.gz
ターミナルにて解凍する。
tar zxvf lua-5.1.4.tar.gz
とりあえずユーザローカルにインストールすることにする。 解凍したあとMakefileを書き換えてインストール先を/Users/dan/localに変更する。 Makefileが簡潔に書かれているので書き換えるのが容易だ。
cd lua-5.1.4 vim Makefile
makeを引数なしで実行する次のように表示される。
make
以下表示結果。
Please do make PLATFORM where PLATFORM is one of these: aix ansi bsd freebsd generic linux macosx mingw posix solaris See INSTALL for complete instructions.
手元の環境はMacなのでmacosxを与えてmakeを実行する。
make macosx
インストール。 (デフォルトのパスにインストールするならsudoが必要。)
make install
インストール先(上の例なら/Users/dan/local/bin)にパスを通せばluaコマンドを実行できる。
lua -v => Lua 5.1.4 Copyright (C) 1994-2008 Lua.org, PUC-Rio