#
# Makefile to install prerequisites for OpenSRF
#
-# Currently supports Debian (wheezy/squeeze), Ubuntu (lucid/precise)
-# and Fedora (16).
+# Currently supports Debian (wheezy/squeeze), Ubuntu (precise/trusy)
+# and Fedora (19).
#
# Installs Perl prereqs, libjs with Perl wrapper
#
# - or -
# make -f Makefile.install debian-squeeze
# - or -
-# make -f Makefile.install ubuntu-lucid
-# - or -
# make -f Makefile.install ubuntu-precise
# - or -
+# make -f Makefile.install ubuntu-trusty
+# - or -
# make -f Makefile.install fedora
#
# ---------------------------------------------------------------------
libxml-libxslt-perl \
libncurses5-dev
-EXTRA_DEBS_UBUNTU_LUCID = \
+EXTRA_DEBS_UBUNTU_PRECISE = \
libmemcached-dev\
libxml-libxml-perl \
- libxml-libxslt-perl
+ libxml-libxslt-perl \
+ ncurses-dev
-EXTRA_DEBS_UBUNTU_PRECISE = \
+EXTRA_DEBS_UBUNTU_TRUSTY = \
libmemcached-dev\
libxml-libxml-perl \
libxml-libxslt-perl \
fedora: install_fedora_rpms
-ubuntu-lucid: generic_ubuntu lucid
ubuntu-precise: generic_ubuntu precise
-lucid: install_extra_debs install_extra_debs_lucid
+ubuntu-trusty: generic_ubuntu trusty
precise: install_extra_debs install_extra_debs_precise
+trusty: install_extra_debs install_extra_debs_trusty
generic_ubuntu: install_debs debian_sys_config
# ------------------------------------------------------------------
$(APT_TOOL) install $(EXTRA_DEBS_SQUEEZE)
# Install even more packaged dependencies on modern distros
-install_extra_debs_lucid:
- $(APT_TOOL) install $(EXTRA_DEBS_UBUNTU_LUCID)
-
install_extra_debs_precise:
$(APT_TOOL) install $(EXTRA_DEBS_UBUNTU_PRECISE)