summaryrefslogtreecommitdiffstats
path: root/.github/travis/build-all.sh
blob: d4ab35afbbaeb875434ad145d7aec12b3a3e942a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh

BUILD=$PWD/build

LIBEVENT=https://github.com/libevent/libevent/releases/download/release-2.1.11-stable/libevent-2.1.11-stab\
le.tar.gz
NCURSES=https://ftp.gnu.org/gnu/ncurses/ncurses-6.2.tar.gz

wget -4q $LIBEVENT || exit 1
tar -zxf libevent-*.tar.gz || exit 1
(cd libevent-*/ &&
	 ./configure --prefix=$BUILD \
		     --enable-shared \
		     --disable-libevent-regress \
		     --disable-samples &&
	 make && make install) || exit 1

wget -4q $NCURSES || exit 1
tar -zxf ncurses-*.tar.gz || exit 1
(cd ncurses-*/ &&
	CPPFLAGS=-P ./configure --prefix=$BUILD \
				--with-shared \
				--with-termlib \
				--without-ada \
				--without-cxx \
				--without-manpages \
				--without-progs \
				--without-tests \
				--without-tack \
				--enable-pc-files \
				--with-pkg-config-libdir=$BUILD/lib/pkgconfig &&
	 make && make install) || exit 1

sh autogen.sh || exit 1
PKG_CONFIG_PATH=$BUILD/lib/pkgconfig ./configure --prefix=$BUILD "$@"
make && make install || exit 1