diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:32:15 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-03-03 00:39:27 -0800 |
commit | 1eee4d3de9f7dfc0a3a57f0304c4595c0934ee8b (patch) | |
tree | 1b6c43130a41e1a9a976e20cd3c48500aada5432 | |
parent | 157e0ad4f7495ef28719157caa76b82b77a7c47e (diff) | |
download | scm-1eee4d3de9f7dfc0a3a57f0304c4595c0934ee8b.tar.gz scm-1eee4d3de9f7dfc0a3a57f0304c4595c0934ee8b.zip |
switch from texi2html to makeinfo
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/debian/control b/debian/control index c4f15bd..3030d47 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: scm Section: interpreters Priority: optional Maintainer: Thomas Bushnell, BSG <tb@debian.org> -Build-Depends: slib (>> 3b1), libncurses5-dev, libreadline-dev, texi2html, texinfo, libx11-dev, debhelper (>= 9) +Build-Depends: slib (>> 3b1), libncurses5-dev, libreadline-dev, texinfo, libx11-dev, debhelper (>= 9) Standards-Version: 3.9.8 Homepage: http://people.csail.mit.edu/jaffer/SCM.html diff --git a/debian/rules b/debian/rules index 6f8ce46..6e550d3 100755 --- a/debian/rules +++ b/debian/rules @@ -31,8 +31,9 @@ override_dh_auto_build: # Use the same options for both static library and executable ./build -p linux -hsystem -f libscm.opt ./build -p linux -hsystem -f libscm.opt -t lib - texi2html -monolithic scm.texi - texi2html -monolithic Xlibscm.texi + makeinfo --html --no-split scm.texi + makeinfo --html --no-split Xlibscm.texi + mv XlibScm.html Xlibscm.html override_dh_auto_test: # skip: inexact tests fail; fixed in later upstream version |