summaryrefslogtreecommitdiff
path: root/isync.sh
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2019-05-12 19:12:07 +0000
committerMike Crute <mike@crute.us>2019-05-12 19:12:07 +0000
commit9a77bced44473496cc35a6e1a0995bf95817871d (patch)
treed45fd56342b8510e918d21cd00abc09402fb379c /isync.sh
downloadapp-dockerfiles-9a77bced44473496cc35a6e1a0995bf95817871d.tar.bz2
app-dockerfiles-9a77bced44473496cc35a6e1a0995bf95817871d.tar.xz
app-dockerfiles-9a77bced44473496cc35a6e1a0995bf95817871d.zip
Initial importHEADmaster
Diffstat (limited to 'isync.sh')
-rwxr-xr-xisync.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/isync.sh b/isync.sh
new file mode 100755
index 0000000..03feb6d
--- /dev/null
+++ b/isync.sh
@@ -0,0 +1,19 @@
1#!/bin/bash
2
3set -euxo pipefail
4
5git clone https://git.code.sf.net/p/isync/isync /build/source
6cd /build/source
7git checkout 1.3
8
9apt-get install -y \
10 libsasl2-dev \
11 zlib1g-dev \
12 libssl-dev \
13 libdb-dev
14
15./autogen.sh
16./configure --prefix=/build/target/isync-1.3
17make && make install
18
19tar -C /build/target -cvzf /output/isync-1.3.tar.gz isync-1.3