diff options
-rw-r--r-- | build_texinfo.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build_texinfo.sh b/build_texinfo.sh new file mode 100644 index 0000000..de062e7 --- /dev/null +++ b/build_texinfo.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Script to facilitate building texinfo binaries for CRAN in a chroot +# Matching CRAN sources must be in /etc/apt/sources.list of the chroot + +apt-get update +apt-get build-dep texinfo + +apt-get source texinfo + +cd texinfo-* + +dpkg-buildpackage -B + +cd .. |