summaryrefslogtreecommitdiff
path: root/config_lua_module
blob: 7b33f55d5b98d97ba5b9a89c934c0566c3e1aa00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash

echo ' '
echo '  This script will configure the Tecgraf libraries in the system'
echo '  to be used from Lua. It was tested only in Ubuntu.'
echo ' '
echo '  The Run Time libraries must be already installed on the system.'
echo ' '
echo '  Must be run with "sudo", or install will fail,'
echo '  for example:'
echo '     sudo ./config_lua_module'
echo ' '
echo -n Press Enter to continue or Ctrl+C to abort...
read contscr
echo ' '

SYSTEM_LIB=/usr/lib
LUA_LIB=$SYSTEM_LIB/lua/5.1

Make_Lua_Link()
{
  ln -fsv $SYSTEM_LIB/lib$1'51'.so $1.so
}

mkdir -p $LUA_LIB
cd $LUA_LIB

Make_Lua_Link cdlua
Make_Lua_Link cdluacontextplus
Make_Lua_Link cdluacairo
Make_Lua_Link cdluagl
Make_Lua_Link cdluaim
Make_Lua_Link cdluapdf