taskwarrior/with_lua
Paul Beckingham 98ebe8b7cc Build - with_lua
- Added code to dynamically run different configure scripts depending
  on the OS.
2010-03-01 18:17:14 -05:00

24 lines
463 B
Text
Executable file

# This is currently what is required to build with Lua.
OS=`uname`
case $OS in
Darwin)
./configure --with-lua
;;
esac
# Cygwin 1.5:
# Command:
#./configure
# Cygwin 1.7:
# Command:
#./configure --with-ncurses --with-ncurses-inc=/usr/include/ncurses
# Ubuntu 9.10:
# sudo apt-get install lualib5.1-0-dev
# The library name is also liblua5.1.a, with no symlink to liblua.a.
# Command:
# ./configure --with-lua --with-lua-inc=/usr/include/lua5.1