This is what you need to do if you access the source code repository
directly rather than downloading a tar-ball.
The command to get the source code using bzr is:
bzr branch sftp://appcs/home/bn204/public_bzr/libair
The sequence of commands to do the actual build of the main library is:
export INSTALLDIR=/home/bnikolic/d/p/bnmain
# Only needed after making a fresh checkout from the source code
# repository
autoreconf -i
# Only needed after big changes to the makefiles, or on first checkout
LD_LIBRARY_PATH=$INSTALLDIR/lib PATH=$INSTALLDIR/bin:$PATH \
PKG_CONFIG_PATH=$INSTALLDIR/lib/pkgconfig \
./configure --prefix=$INSTALLDIR
make
LibAIR has an experimental program to access the measurement set,
extract information relevant for testing of phase correction and save
it a file in HDF5 format. The propose of this program is to avoid CASA
as a dependency in the normal development cycle of phase correction
algorithms.
The program named “msdump” and is located in the casawvr/test
directory. It is not built by default. Instead, it is separately with
using the ‘’scons’’ system (scons also being used to make casa-core
and hopefully casa...).
The invoication to build the msdump program is:
scons CASACOREROOT=/home/bnikolic/d/p/cs
where CASACOREROOT
is set to whatever the directory tree root is
where casa core and supporting libraries were installed.