taskwarrior/with_lua
Paul Beckingham c73f131f32 Eliminated ncurses
- Removed autoconf ncurses detection.
- Modified man pages.
- Inserted vitapi replacement code.
- Cached terminal size values for reuse.
- Modified packaging info for OSX.
- Removed -lncurses from unit test makefile.
- Removed obsolete taskrc example.
- Modified (simplified) source build instructions.
2010-12-14 14:40:03 -05:00

20 lines
369 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
# 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