summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-04-15 16:03:59 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-04-15 16:16:16 +0200
commit6972221743b4aa929a4a0fda2f9989c3527285db (patch)
tree401ec0a729a51dd7f54a50c6a996a8c08cc154ce
parentd3d710e3525853de849a5b14984da53a3925109e (diff)
Add a catalog to include stylesheet1.1.1
-rw-r--r--Makefile.am18
-rw-r--r--configure.ac20
-rw-r--r--latex/Makefile.am6
3 files changed, 44 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..4876484
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,18 @@
+xsltdir = $(pkgdatadir)/xslt/@VERSION@
+
+dist_xslt_DATA = \
+ bibliography.xsl \
+ bibtex.xsl \
+ latex.xsl
+
+include %reldir%/latex/Makefile.am
+
+pkgdata_DATA = catalog
+
+catalog: Makefile
+ $(AM_V_GEN) (echo '<?xml version="1.0" encoding="UTF-8"?>' ; \
+ echo '<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">' ; \
+ printf '<rewriteURI uriStartString="http://h4sp.planete-kraus.eu/transform" rewritePrefix="file://%s"/>\n' $(xsltdir) ; \
+ echo '</catalog>' \
+ ) > $@-t
+ mv $@-t $@
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..dc33671
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,20 @@
+# -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ([2.69])
+AC_INIT([h4sp], m4_esyscmd([echo -n $(cat .tarball-version) || echo -n "SNAPSHOT"]), [vivien@planete-kraus.eu])
+AM_INIT_AUTOMAKE([foreign])
+
+# Checks for programs.
+AC_PROG_INSTALL
+
+# Checks for libraries.
+
+# Checks for header files.
+
+# Checks for typedefs, structures, and compiler characteristics.
+
+# Checks for library functions.
+
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT
diff --git a/latex/Makefile.am b/latex/Makefile.am
new file mode 100644
index 0000000..d2ab292
--- /dev/null
+++ b/latex/Makefile.am
@@ -0,0 +1,6 @@
+latexxsltdir = $(xsltdir)/latex
+
+dist_latexxslt_DATA = \
+ algorithm.xsl \
+ escape.xsl \
+ markup.xsl