-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathINSTALL
68 lines (47 loc) · 1.85 KB
/
INSTALL
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
This file is protected by Copyright. Please refer to the COPYRIGHT file
distributed with this source distribution.
This file is part of SCA-JTNC core.
SCA-JTNC core is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.
SCA-JTNC core is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License along
with this program. If not, see http://www.gnu.org/licenses/.
I. Installing Dependencies
----------------------------------------------
The Core Framework requires the following RPMS:
* gcc
* gcc-c++
* apr, apr-devel
* apr-util, apr-util-devel
* expat-devel
* autoconf
* automake
* libtool
* e2fsprogs-devel
* zip
* xsd
* boost, boost-devel
* libomniORB4, libomniORB4-devel
* omniORB-servers, omniORB-bootscripts
The following are option, but highly recommended
* libomniEvents, libomniEvents-devel
* omniEvents-server, omniEvents-bootscripts, omniEvents-utils
II. Building and installing the Core Framework
----------------------------------------------
The installation requires setting up environment variables, creating installation directories, and running the standard Autotools configuration and make commands:
$ export SCAHOME=/usr/local/sca/core
$ export SCAROOT=/var/sca/sdr
$ mkdir -p $SCAHOME
$ mkdir -p $SCAROOT
$ ./reconf
$ ./configure
$ make
$ make install
$ sudo cp sca.sh /etc/profile.d
$ sudo cp sca-scaroot.sh /etc/profile.d
$ sudo chmod 644 /etc/profile.d/sca*