forked from westes/flex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
language: c | ||
|
||
compiler: | ||
- gcc | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- autoconf | ||
- bison | ||
- gcc-6 | ||
- help2man | ||
- lzip | ||
- texinfo | ||
- texlive | ||
|
||
before_script: | ||
- ./.travis/install-gettext.sh | ||
- ./.travis/install-automake.sh | ||
- export PATH=$HOME/bin:$PATH | ||
|
||
script: ./autogen.sh && ./configure && make && make check && make distcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash -ex | ||
|
||
wget -nv https://ftp.gnu.org/gnu/gettext/gettext-0.19.8.1.tar.lz{,.sig} | ||
gpg2 --keyserver hkp://keys.gnupg.net --recv-keys D7E69871 | ||
gpg2 gettext-0.19.8.1.tar.lz.sig | ||
tar xf gettext-0.19.8.1.tar.lz | ||
cd gettext-0.19.8.1 | ||
./configure --prefix=$HOME | ||
make | ||
make install |