Adding CentOS 6 support in the Makefile.install
authorChris Sharp <csharp@georgialibraries.org>
Thu, 19 Dec 2013 16:29:37 +0000 (11:29 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Thu, 19 Dec 2013 16:29:37 +0000 (11:29 -0500)
Configured repos include EPEL (https://fedoraproject.org/wiki/EPEL)
and RPMforge (http://wiki.centos.org/AdditionalResources/Repositories/RPMForge#head-f0c3ecee3dbb407e4eed79a56ec0ae92d1398e01)

Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
Open-ILS/src/extras/Makefile.install

index 4ddd7cb..9ca17a0 100644 (file)
@@ -19,6 +19,8 @@
 #      make -f Makefile.install ubuntu-precise
 #      - or -
 #      make -f Makefile.install fedora
+#      - or -
+#      make -f Makefile.install centos
 #
 # ---------------------------------------------------------------------
 
@@ -61,6 +63,8 @@ ubuntu-precise:
        @make -f $(DIR)/Makefile.ubuntu-precise
 fedora:
        @make -f $(DIR)/Makefile.fedora
+centos:
+       @make -f $(DIR)/Makefile.centos
 
 postgres-server-debian-wheezy:
        @make -f $(DIR)/Makefile.debian-wheezy install_postgres_server
@@ -72,5 +76,7 @@ postgres-server-ubuntu-precise:
        @make -f $(DIR)/Makefile.ubuntu-precise install_postgres_server
 postgres-server-fedora:
        @make -f $(DIR)/Makefile.fedora install_postgres_server
+postgres-server-centos:
+       @make -f $(DIR)/Makefile.centos install_postgres_server
 
 # vim:noet:sw=4:ts=4: