sit/README.md

113 lines
3.4 KiB
Markdown
Raw Permalink Normal View History

# Software Installation Tool (SIT)
2011-03-04 17:44:10 +00:00
## About
SIT is a simple software installation tool inspired by Gentoo's emerge script.
2019-04-16 10:42:24 +00:00
It eases the installation process and helps to prevent errors during the
installation. Further sit helps with documenting software installations
by generating log files from the installation process, which are installed
along the software package itself.
2011-03-04 17:44:10 +00:00
## Getting started
### Basic usage
In its current version sit can only install a package using a package class file
including the necessary information.
2011-03-04 17:44:10 +00:00
The package tree resides per default in the directory `$SIT_PATH/packages`. For
convenience it should look like follows:
```shell
2012-10-25 09:30:53 +00:00
$SIT_PATH/packages/CATEGORY/PACKAGE/PACKAGE-VERSION
```
2011-03-04 17:44:10 +00:00
The global configuration file of SIT is `$SIT_PATH/etc/sit.conf`. It includes
a variety of default values:
2011-07-07 23:35:12 +00:00
* PREFIX_BASE
2019-04-16 10:42:24 +00:00
* SRC_POOL
2011-07-07 23:35:12 +00:00
* SCLASS_DIR
* DEFAULT_PLATFORM
* DEFAULT_COMPILER
2011-03-04 17:44:10 +00:00
A user specific configuration file `$HOME/.sit`" can be used to overwrite the
settings in the global configuration file.
2019-04-16 10:42:24 +00:00
The installation process is currently controled with the following environment
2011-03-04 17:44:10 +00:00
variables:
* COMPILER
* COMPILER_VERSION
* MPI
* MPI_VERSION
* PLATFORM
2011-07-07 23:35:12 +00:00
* HOSTNAME
Sit detects currently the build platform using the `SITE_PLATFORM_NAME` variable.
2013-07-17 18:55:09 +00:00
If sit cannot determine the PLATFORM it uses the default platform specified
in `sit.conf`.
2019-04-16 10:42:24 +00:00
For each platform configuration files are stored unter
```shell
$SIT_PATH/etc/platform-configs/$PLATFORM/*
```
2011-07-07 23:35:12 +00:00
At the moment only compiler configurations are supported.
2011-03-04 17:44:10 +00:00
2019-04-16 10:42:24 +00:00
To install a package simply call sit with the necessary information provided by
2011-03-04 17:44:10 +00:00
these variables:
```shell
[VARIABLE_DECLARATIONS] sit PACKAGE
```
2011-03-04 17:44:10 +00:00
e.g.
```shell
PREFIX_BASE=/opt COMPILER=gnu COMPILER_VERSION=4.5 sit mpi/openmpi-1.5.1
```
or for a package to be installed with a specific compiler and mpi version
```shell
PREFIX_BASE=/opt COMPILER=gnu COMPILER_VERSION=8.3.0 MPI=openmpi MPI_VERSION=4.0.1 ./sit performance/extrae/extrae-3.6.1
```
2011-03-04 17:44:10 +00:00
### Package files
2011-03-04 17:44:10 +00:00
Package files should include all the necessary information for the installation
proces. The syntax of the package class files is inspired by gentoo's ebuild files.
A sit package file must contain at least the following variables
```
2011-03-04 17:44:10 +00:00
A archive (source tarball)
P package (name of extracted source folder)
URL
INSTALLER
```
2011-03-04 17:44:10 +00:00
Optional varialbes to control the build process are
```
2011-03-04 17:44:10 +00:00
CONFIGURE_OPTS options which will be passed to configure
CMAKE_OPTS options which will be passed to cmake
2011-03-04 17:44:10 +00:00
MAKEOPTS options which will be passed to make (see sit.conf)
```
2011-03-04 17:44:10 +00:00
During the installation the following directory paths are used
```
2011-03-04 17:44:10 +00:00
WORKDIR working directory to which e.g. sources will be unpacked
SRCDIR source directory
2019-08-29 16:14:44 +00:00
BUILDDIR directory in which the package will be build ($WORKDIR/build)
2011-03-04 17:44:10 +00:00
LOGDIR directory storing the temporary logfiles ($WORKDIR)
```
2011-03-04 17:44:10 +00:00
2019-04-16 10:42:24 +00:00
For fine tuning of the installation process the user can overwrite the following
2011-03-04 17:44:10 +00:00
functions. If not other mentioned they are executed in $BUILDDIR
```
2011-03-04 17:44:10 +00:00
src_unpack extract $SRC_POOL/${A} into $WORKDIR
2011-03-24 10:27:01 +00:00
src_prepare prepare extracted sources
2011-03-04 17:44:10 +00:00
src_configure configure
src_build make
src_pretest tests to be performed before installation
2011-03-04 17:44:10 +00:00
src_install make install
src_posttest tests to be done after installation
```
2011-03-04 17:44:10 +00:00
2019-04-16 10:42:24 +00:00
The following helper functions can be used
```
2011-03-04 17:44:10 +00:00
unpack recognize and extract a compressed tar file
```
2011-03-04 17:44:10 +00:00