# make -f Makefile.install ubuntu-bionic
# - or -
# make -f Makefile.install fedora
+# - or -
+# make -f Makefile.install centos
#
# ---------------------------------------------------------------------
APT_TOOL=apt-get -yq
+# CentOS needs the EPEL repository
+EPEL_HOST=http://dl.fedoraproject.org/pub/epel/6/x86_64
+EPEL_PKG=epel-release-6-8.noarch.rpm
+
# Debian dependencies
DEBS = \
autoconf\
zip\
zlib1g-dev
-FEDORAS = \
+RPMS = \
autoconf \
automake \
check \
jessie: install_extra_debs_jessie debian_sys_config
generic_debian: install_debs
-fedora: install_fedora_rpms
+fedora: install_rpms
+centos: install_epel install_rpms
ubuntu-trusty: generic_ubuntu trusty apache_mpm_prefork_mods
ubuntu-xenial: generic_ubuntu xenial apache_mpm_prefork_mods apache_perl_mod
apache_perl_mod:
a2enmod perl
-# Fedora
-install_fedora_rpms:
- yum -y install $(FEDORAS)
-
# vim:noet:sw=4:ts=4: