-Makefile configure config.log config.cache config.status
+Makefile configure config.log config.cache config.status http_getter.pl
-Andrea Asperti <asperti@cs.unibo.it>
-Luca Padovani <lpadovan@cs.unibo.it>
Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>
-Irene Schena <schena@cs.unibo.it>
-HELM_DTDS_DIR=@HELM_DTDS_DIR@
-HELM_STYLES_DIR=@HELM_STYLES_DIR@
+HELM_BIN_DIR=@exec_prefix@
install:
- mkdir -p $(HELM_STYLES_DIR)
- cp dtd/* $(HELM_DTDS_DIR)
- cp style/*.xsl $(HELM_STYLES_DIR)
+ cp http_getter.pl $(HELM_BIN_DIR)
distclean:
- rm -f Makefile configure config.log config.cache config.status
+ rm -f Makefile configure config.log config.cache config.status \
+ http_getter.pl
.PHONY: install distclean
HELM (Hypertextual Electronic Library of Mathematics) is a project aimed
at the creation of tools for the development and exploitation of a huge
distributed library of formal mathematical knowledge. This package holds
-the base DTDs and XSLT stylesheets developed by the members of project
-HELM.
+the getter used to map logical names into phisical names and download
+the required files.
For more information see http://www.cs.unibo.it/helm
AC_SUBST(HELM_DTDS_DIR)
AC_SUBST(HELM_STYLES_DIR)
+AC_SUBST(DEFAULT_HELM_LIBRARY_DIR)
+AC_SUBST(PERL_BINARY)
+
AC_OUTPUT([Makefile])
-#!/usr/bin/perl
+#!@PERL_BINARY@
# First of all, let's load HELM configuration
use Env;
my $HELM_LIBRARY_DIR = $ENV{"HELM_LIBRARY_DIR"};
# this should be the only fixed constant
-my $DEFAULT_HELM_LIBRARY_DIR = "/usr/local/etc/helm";
+my $DEFAULT_HELM_LIBRARY_DIR = "@DEFAULT_HELM_LIBRARY_DIR@";
if (defined ($HELM_LIBRARY_DIR) {
$HELM_LIBRARY_PATH = $HELM_LIBRARY_DIR."./configuration.pl";
} else {