summaryrefslogtreecommitdiff
path: root/config_lua_module
blob: da6141310ac32f57b442f7e0687a4ae63041523a (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
34
35
#!/bin/bash

# Include TEC_UNAME definitions
source tec_uname

echo ' '
echo '  This script will configure the Tecgraf libraries in the system'
echo '  to be used from Lua. It was tested in Ubuntu and in Fedora.'
echo ' '
echo '  The Run Time libraries must be already installed on the system (see the install script).'
echo '  It assumes that Lua binaries are installed using system packages.'
echo ' '
echo '  Must be run with "sudo", or install will fail,'
echo '  for example:'
echo '     sudo ./config_lua_module'
echo ' '

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

# From tec_uname script
ComputeTecUname
ComputeSystemPaths
#PrintInfo

Pause
mkdir -p $TEC_LUA_LIB
cd $TEC_LUA_LIB

Make_Lua_Link imlua
Make_Lua_Link imlua_process
Make_Lua_Link imlua_jp2
Make_Lua_Link imlua_fftw