Skip to content

Commit 5df5108

Browse files
committed
[Doc] Updated the README file.
1 parent b637f81 commit 5df5108

File tree

2 files changed

+70
-25
lines changed

2 files changed

+70
-25
lines changed

.gitignore

+38-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,44 @@ config/ltsugar.m4
1515
config/ltversion.m4
1616
config/lt~obsolete.m4
1717
config/missing
18+
config/codeset.m4
19+
config/config.rpath
20+
config/gettext.m4
21+
config/glibc21.m4
22+
config/iconv.m4
23+
config/intdiv0.m4
24+
config/intmax.m4
25+
config/inttypes-pri.m4
26+
config/inttypes.m4
27+
config/inttypes_h.m4
28+
config/isc-posix.m4
29+
config/lcmessage.m4
30+
config/lib-ld.m4
31+
config/lib-link.m4
32+
config/lib-prefix.m4
33+
config/longdouble.m4
34+
config/longlong.m4
35+
config/mdate-sh
36+
config/mkinstalldirs
37+
config/mkinstalldirs~
38+
config/nls.m4
39+
config/po.m4
40+
config/printf-posix.m4
41+
config/progtest.m4
42+
config/signed.m4
43+
config/size_max.m4
44+
config/stdint_h.m4
45+
config/texinfo.tex
46+
config/uintmax_t.m4
47+
config/ulonglong.m4
48+
config/wchar_t.m4
49+
config/wint_t.m4
50+
config/xsize.m4
1851
configure
52+
info/rmol-ref.info
53+
info/stamp-vti
54+
info/version-ref.texi
55+
po/Makevars.template
1956
airinv/config.h.in*
20-
test/airinv/InventoryTestSuite_results.xml
2157
airinv/ui/browser/config.js
22-
58+
*_results.xml

README

+32-23
Original file line numberDiff line numberDiff line change
@@ -19,46 +19,55 @@ Just use Yum:
1919
yum -y install airinv-devel airinv-doc
2020

2121
You can also get the RPM packages (which may work on Linux
22-
distributions like Novel Suse and Mandriva) from the Fedora repository
23-
(e.g., for Fedora 18,
24-
http://fr2.rpmfind.net/linux/fedora/releases/18/Everything/)
22+
distributions like Suse and Mandriva) from the Fedora repository
23+
(e.g., for Fedora 22,
24+
http://fr2.rpmfind.net/linux/fedora/releases/22/Everything/)
2525

2626

2727
Building the library and test binary from Git repository:
2828
----------------------------------------------------------------
29-
The Sourceforge Git repository may be cloned as following:
30-
git clone ssh://git.code.sf.net/p/airinv/code airinvgit
31-
cd airinvgit
29+
The Git repository may be cloned as following:
30+
$ git clone [email protected]:airsim/rmol.git rmolgit # through SSH
31+
$ git clone https://github.com/airsim/rmol.git # if the firewall filters SSH
32+
cd rmolgit
3233
git checkout trunk
3334

3435
Then, you need the following packages (Fedora/RedHat/CentOS names here,
3536
but names may vary according to distributions):
36-
* cmake
37-
* gcc-c++
38-
* stdair-devel, airrac-devel, rmol-devel, sevmgr-devel
39-
* boost-devel
40-
* zeromq-devel
41-
* readline-devel, ncurses-devel
42-
* soci-mysql-devel
43-
* python-devel
44-
* gettext-devel (optional)
45-
* doxygen, ghostscript, graphviz and tetex-latex (optional)
46-
* rpm-build (optional)
37+
* cmake
38+
* gcc-c++
39+
* boost-devel / libboost-dev
40+
* zeromq-devel
41+
* python-devel / python-dev
42+
* gettext-devel / gettext-dev
43+
* sqlite3-devel / libsqlite3-dev
44+
* readline-devel / readline-dev
45+
* ncurses-devel
46+
* soci-mysql-devel, soci-sqlite3-devel
47+
* stdair-devel / libstdair-dev
48+
* airrac-devel / libairrac-dev
49+
* rmol-devel / librmol-dev
50+
* sevmgr-devel / libsevmgr-dev
51+
* doxygen, ghostscript, graphviz
52+
* tetex-latex (optional)
53+
* rpm-build (optional)
4754

4855
Building the library and test binary from the tarball:
4956
------------------------------------------------------
5057
The latest stable source tarball (airinv*.tar.gz or .bz2) can be found here:
51-
http://sourceforge.net/project/showfiles.php?group_id=261633
58+
https://sourceforge.net/projects/airinv/files/
5259

5360
To customise the following to your environment, you can alter the path
5461
to the installation directory:
5562
export INSTALL_BASEDIR=/home/user/dev/deliveries
56-
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=64"
63+
export AIRINV_VER=99.99.99
64+
if [ -d /usr/lib64 ]; then LIBSUFFIX=64; fi
65+
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX"
5766

5867
Then, as usual:
5968
* To configure the project, type something like:
6069
mkdir build && cd build
61-
cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_BASEDIR}/airinv-99.99.99 \
70+
cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_BASEDIR}/airinv-$AIRINV_VER \
6271
-DWITH_STDAIR_PREFIX=${INSTALL_BASEDIR}/stdair-stable \
6372
-DWITH_SEVMGR_PREFIX=${INSTALL_BASEDIR}/sevmgr-stable \
6473
-DWITH_AIRRAC_PREFIX=${INSTALL_BASEDIR}/airrac-stable \
@@ -77,13 +86,13 @@ Then, as usual:
7786
* To package the binary and the (HTML and PDF) documentation:
7887
make package
7988
* To browse the (just installed, if enabled) HTML documentation:
80-
midori file://${INSTALL_BASEDIR}/airinv-99.99.99/share/doc/airinv-99.99.99/html/index.html
89+
midori file://${INSTALL_BASEDIR}/airinv-$AIRINV_VER/share/doc/airinv/html/index.html
8190
* To browse the (just installed, if enabled) PDF documentation:
82-
evince ${INSTALL_BASEDIR}/airinv-99.99.99/share/doc/airinv-99.99.99/html/refman.pdf
91+
evince ${INSTALL_BASEDIR}/airinv-$AIRINV_VER/share/doc/airinv/html/refman.pdf
8392
* To run the local binary version:
8493
./airinv/airinv -b
8594
* To run the installed version:
8695
${INSTALL_BASEDIR}/airinv-99.99.99/bin/airinv -b
8796

88-
Denis Arnaud (December 2012)
97+
Denis Arnaud (June 2015)
8998

0 commit comments

Comments
 (0)