Welcome to mirror list, hosted at ThFree Co, Russian Federation.

install.sh « litmus-v2 « travis « tests « dav « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ee2cb08d82ea04e4bdd526c1b21e4ddb1a283b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

# compile litmus
if [ ! -f /tmp/litmus/litmus-0.13.tar.gz ]; then
  mkdir -p /tmp/litmus
  wget -O /tmp/litmus/litmus-0.13.tar.gz http://www.webdav.org/neon/litmus/litmus-0.13.tar.gz
  cd /tmp/litmus
  tar -xzf litmus-0.13.tar.gz
  cd /tmp/litmus/litmus-0.13
  ./configure
  make
fi