blob: f9d0f7b60ab23e349dd408051c72a81d0450d54e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
# An initial update is required or the cabal cache will be empty and no packages
# can be installed.
cabal update
# We need to install happy explicitly, otherwise setup-Simple-Cabal will fail to
# install.
cabal install happy
# Fetch hstox.
git clone --recursive --depth=1 https://github.com/TokTok/hstox ../hstox
# Delete all files in the cloned toxcore.
rm -rf ../hstox/test/toxcore/toxcore/toxcore
# Move the toxcore source files to the hstox test directory.
# The reason we move source files instead of the whole git root directory is
# that the travis scripts (like this one) need to remain in place.
mv toxcore ../hstox/test/toxcore/toxcore
# In the "install" step, we only run configure, which downloads the required
# packages. In the "script" step we then build the actual code.
make -C ../hstox configure
|