summaryrefslogtreecommitdiff
path: root/build_texinfo.sh
blob: de062e767188a4f52ba8a119fa9e8197b5149cc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 ..

Contact - Imprint