summaryrefslogtreecommitdiff
path: root/.travis/install-gettext.sh
diff options
context:
space:
mode:
authorJoseph Langley <mightyjo@gmail.com>2021-02-20 12:50:43 -0500
committerJoseph Langley <mightyjo@gmail.com>2022-05-11 14:47:30 -0400
commit87ff2861e6e57148b307b9ff82fb557d498997e1 (patch)
treed964e97f5ac2d0aef1d6527bb02c5aa5901ddc64 /.travis/install-gettext.sh
parenta0c76652f7bf3221f2bc5a15137aedfe2c278969 (diff)
downloadflex-git-87ff2861e6e57148b307b9ff82fb557d498997e1.tar.gz
chore(travisci): Remove Travis CI configs.
Diffstat (limited to '.travis/install-gettext.sh')
-rwxr-xr-x.travis/install-gettext.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/.travis/install-gettext.sh b/.travis/install-gettext.sh
deleted file mode 100755
index 1c44b79..0000000
--- a/.travis/install-gettext.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash -ex
-
-wget -nv https://ftp.gnu.org/gnu/gettext/gettext-0.19.8.1.tar.lz
-
-# Verify tarball against hard-coded hashes. GPG signatures require an external
-# keyserver which might be offline, which is undesirable for build server use.
-# It's equally secure to just hard-code hashes, provided they're trusted (i.e.
-# you verify a hash against a GPG signature once).
-echo '404e072c455f79be4a2458863c19fb55a217771e *gettext-0.19.8.1.tar.lz'|
- sha1sum -c || :
-printf '%s *gettext-0.19.8.1.tar.lz\n' \
-27c7a15be1ffd30a0182e264d0bf896850a295160872e1b1b9d1e9a15bc486cd\
-93465c131f948206fa0bbe2e3eacfc8489dd0cfc5ea5dcf05eff3829e27fc60f|
- sha512sum -c || :
-
-tar xf gettext-0.19.8.1.tar.lz
-cd gettext-0.19.8.1
-# Don't flood Travis CI build log with dependency packages unless error occurs.
-# libacl is not used in this Travis build system.
-./configure --quiet --prefix="$HOME" --disable-acl ||
- { s=$? && cat config.log && (exit $s); }
-make -s V=0 >/dev/null 2>&1 || make -s V=1
-make -s install >make_install.log 2>&1 ||
- { s=$? && cat make_install.log && (exit $s); }
-rm make_install.log || :