mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-02-01 04:10:48 +00:00
29 lines
863 B
Bash
Executable File
29 lines
863 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
|
|
brew upgrade
|
|
brew install gnutls
|
|
brew install nettle
|
|
brew outdated autoconf || brew upgrade autoconf
|
|
brew outdated automake || brew upgrade automake
|
|
brew outdated libtool || brew upgrade libtool
|
|
brew install doxygen
|
|
brew outdated gettext || brew upgrade gettext
|
|
brew install flex
|
|
brew install libidn
|
|
brew install xz
|
|
brew install lbzip2
|
|
brew install lzip
|
|
brew install libgcrypt
|
|
brew install grep
|
|
brew install gawk
|
|
brew link --force gettext
|
|
elif [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
|
|
# Install Libmicrohttpd from source
|
|
sudo apt-get -y install wget
|
|
wget https://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.55.tar.gz
|
|
tar zxf libmicrohttpd-0.9.55.tar.gz && cd libmicrohttpd-0.9.55/
|
|
./configure --prefix=/usr && make -j$(nproc) && sudo make install
|
|
pip install --user cpp-coveralls
|
|
fi
|