forked from cvmfs/cvmfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
25 lines (16 loc) · 759 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Installation Instructions
=========================
The CernVM-FS build system uses cmake.
In order to corerctly build the system several dependencies are necessary.
The dependencies are listed inside the `packaging` directory.
For debian based system you can find the dependencies inside the `control` file under `packaging/debian/cvmfs`.
Similarly for CentOS you can find them inside `packagin/rpm/cvmfs-universal.spec`.
In order to compile and install, run from the source directory
mkdir -p build
cd build
cmake ../
make
sudo make install
In order to build the unit tests in addition, use
`cmake -DBUILD_UNITTESTS=yes ../`
For more details, please see the [technical documentation](https://cvmfs.readthedocs.io/en/stable/).