<!--toc-->
|
|
## Official Repositories
|
|
The following Repositories are maintained by
|
the CppCMS developers
|
|
### Apt-Get Repositories
|
|
There are apt-get repositories for Debian and Ubuntu distributions.
|
|
- Ubuntu distributions: precise, trusty, utopic
|
- Debian distributions: squeeze, wheezy
|
- Architectures: i386, amd64
|
- Packages: libcppcms1, libcppcms-dev, cppcms-tools
|
- Sources: cppcms
|
|
Add them to `/etc/apt/sources.list`, for example:
|
|
For Ubuntu:
|
|
deb http://apt.cppcms.com/ utopic main
|
deb-src http://apt.cppcms.com/ utopic main
|
|
For Debian
|
|
deb http://apt.cppcms.com/ wheezy main
|
deb-src http://apt.cppcms.com/ wheezy main
|
|
|
If you are using other versions you can install any
|
of the two source repositories above and create your
|
own packages easily:
|
|
apt-get source cppcms
|
apt-get build-dep cppcms
|
cd cppcms-X.Y.Z
|
dpkg-buildpackage
|
|
### RPM Repositories
|
|
The packages are build using Open Build Service:
|
|
- Distributions: Fedora 19 and 20, Centos 6, 7, Open Suse 12.3 and 13.1
|
- Distributions: Fedora 19 and 20, Centos 6, 7, Open Suse 12.3, 13.1 and 13.2
|
- Architectures: x86, x86\_64
|
- Packages: libcppcms, libcppcms-devel, cppcms-tools
|
- Sources: cppcms
|
|
<http://download.opensuse.org/repositories/home:/artyom-beilis/>
|
|
|
In order to configure the repository, download the `home:artyom-beilis.repo` file from the directory that
|
fits your distribution and put it under `/etc/yum.repos.d/` as `cppcms.repo`.
|
|
Then run
|
|
yum install libcppcms-devel
|
|
## Unofficial Repositories
|
|
These repositories are created by different contributors
|
that are not part of the CppCMS project. The build may
|
differ from the official CppCMS policy
|
|
### Gentoo
|
|
CppCMS is available in the sunrise overlay.
|
|
Installation (first add the sunrise overlay <http://overlays.gentoo.org/proj/sunrise>):
|
|
emerge -uNDv dev-cpp/cppcms
|
|