AirRAC is a C++ library of airline revenue accounting classes and functions, mainly targeting simulation purposes.
AirRAC makes an extensive use of existing open-source libraries for increased functionality, speed and accuracy. In particular the Boost (C++ Standard Extensions: http://www.boost.org) library is used.
AirRAC is the one of the components of the Travel Market Simulator (http://www.travel-market-simulator). However, it may be used in a stand-alone mode.
Just use DNF (or Yum on older distributions):
$ dnf -y install airrac-devel airrac-doc
You can also get the RPM packages (which may work on Linux distributions like Novel Suse and Mandriva) from the Fedora repository (e.g., for Fedora 38, https://fr2.rpmfind.net/linux/RPM/fedora/38/x86_64/)
The Git repository may be cloned as following:
$ git clone git@github.com:airsim/airrac.git airtspgit # through SSH
$ git clone https://github.com/airsim/airrac.git # if the firewall filters SSH
$ cd airracgit
Then, you need the following packages (Fedora/RedHat/CentOS names here, but names may vary according to distributions):
The latest stable source tarball (airrac*.tar.gz
or .bz2
) can be
found on GitHub: http://github.com/airsim/airrac/releases
To customise the following to your environment, you can alter the path to the installation directory:
export INSTALL_BASEDIR="${HOME}/dev/deliveries"
export AIRRAC_VER="1.00.8"
if [ -d /usr/lib64 ]; then LIBSUFFIX="64"; fi
export LIBSUFFIX_4_CMAKE="-DLIB_SUFFIX=$LIBSUFFIX"
Then, as usual:
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=${INSTALL_BASEDIR}/airrac-${AIRRAC_VER} \
-DWITH_STDAIR_PREFIX=${INSTALL_BASEDIR}/stdair-stable \
-DCMAKE_BUILD_TYPE:STRING=Debug -DENABLE_TEST:BOOL=ON -DINSTALL_DOC:BOOL=ON \
-DRUN_GCOV:BOOL=OFF ${LIBSUFFIX_4_CMAKE} ..
make
make check
libairrac*.so*
) and the binary (airrac
),
make install
cd ${INSTALL_BASEDIR}
rm -f airrac-stable && ln -s airrac-${AIRRAC_VER} airrac-stable
cd -
make dist
make package
midori file://${INSTALL_BASEDIR}/airrac-${AIRRAC_VER}/share/doc/airrac/html/index.html
evince ${INSTALL_BASEDIR}/airrac-${AIRRAC_VER}/share/doc/airrac/html/refman.pdf
./airrac/airrac -b
${INSTALL_BASEDIR}/airrac-${AIRRAC_VER}/bin/airrac -b
Denis Arnaud (June 2015)