summaryrefslogtreecommitdiff
path: root/.travis/install-automake.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis/install-automake.sh')
-rwxr-xr-x.travis/install-automake.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis/install-automake.sh b/.travis/install-automake.sh
new file mode 100755
index 0000000..8de30b5
--- /dev/null
+++ b/.travis/install-automake.sh
@@ -0,0 +1,10 @@
+#!/bin/bash -ex
+
+wget -nv https://ftp.gnu.org/gnu/automake/automake-1.15.1.tar.gz{,.sig}
+gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 94604D37
+gpg2 automake-1.15.1.tar.gz.sig
+tar xf automake-1.15.1.tar.gz
+cd automake-1.15.1
+./configure --prefix=$HOME
+make
+make install