| Download Source Code for LINA 1.00beta1 The LINA source code is currently rather cumbersome. We are in the process of a thorough code review and revision, which will make it much cleaner, smaller and faster to compile. Compiling LINA currently requires you to download three compressed files including a set of third-party dependencies, a pre-built LINA disk, and the LINA code itself. LINA may be built in most UNIX/BSD build enviroments, including Linux, Mac's Darwin, and with Cygwin on Windows. The source files may be downloaded via the following links: third-party.tar.gz full-bootstrap.tar.gz lina-1.00beta1.tar.gz Build Instructions First make sure the following packages are installed on your machine: - autoconf
- automake
- bison
- flex
- gcc
- libglade-2.0
- libgtk2-dev
- libjpeg62-dev
- libtool
- libxt-dev
- make
- build-essential (on Ubuntu/Debian)
- cygwin, msys, and mingw (on Windows)
Perform the build by moving all the downloaded files to the same directory and typing the following commands: tar xvzf lina-1.00beta1.tar.gz tar xvzf third-party.tar.gz; mv third-party lina/ tar xvzf full-bootstrap.tar.gz; mv bootstrap lina/ cd lina sh setup.sh ./configure --prefix=/usr --with-template-name=operating_system --with-version-number=1.00beta1 (on windows add: --with-cygwin-directory=C:/cygwin --with-msys-directory=C:/msys --with-mingw-directory=C:/mingw) sudo make prepare make all sudo make installer
Once the build has completed, LINA will be installed on your machine, and you will find a LINA installer for other machines that share your operating system in the lina subdirectory. |