New CGI script for browsing installed software and documentation.
[sw-tools] / perl / Makefile.am
diff --git a/perl/Makefile.am b/perl/Makefile.am
new file mode 100644 (file)
index 0000000..69cffb5
--- /dev/null
@@ -0,0 +1,56 @@
+## -*-makefile-*-
+##
+## $Id: Makefile.am,v 1.1 1999/07/30 18:46:36 mdw Exp $
+##
+## Build and install Perl bits of `sw'.
+##
+## (c) 1999 EBI
+##
+
+##----- Licensing notice ----------------------------------------------------
+##
+## This file is part of sw-tools.
+##
+## sw-tools is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+## 
+## sw-tools is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+## 
+## You should have received a copy of the GNU General Public License
+## along with sw-tools; if not, write to the Free Software Foundation,
+## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+##----- Revision history ----------------------------------------------------
+##
+## $Log: Makefile.am,v $
+## Revision 1.1  1999/07/30 18:46:36  mdw
+## New CGI script for browsing installed software and documentation.
+##
+
+AUTOMAKE_OPTIONS = foreign
+
+cgidir = ${exec_prefix}/cgi-bin
+
+bin_SCRIPTS = sw-tidy
+cgi_SCRIPTS = sw
+man_MANS = sw-tidy.1 sw-cgi.1
+pkgdata_DATA = \
+       SW.pm SWConfig.pm SWCGI.pm Info.pm \
+       SWList.pm SWDoc.pm SWMan.pm SWInfo.pm
+noinst_DATA = sw.conf
+EXTRA_DIST = \
+       sw.conf \
+       SW.pm SWCGI.pm Info.pm \
+       SWList.pm SWDoc.pm SWMan.pm SWInfo.pm \
+       $(man_MANS)
+
+install-data-hook:
+       [ -r $(datadir)/sw.conf ] || \
+               @INSTALL_DATA@ $(srcdir)/sw.conf $(datadir)/sw.conf
+
+##----- That's all, folks ---------------------------------------------------