summaryrefslogtreecommitdiff
path: root/packages/strongswan/build.sh
blob: 85fe4962a7db192fff892cee2a4607033d9be93e (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
#!/bin/sh
CWD=$(pwd)
set -e

SRC=strongswan
if [ ! -d ${SRC} ]; then
    echo "Source directory does not exists, please 'git clone'"
    exit 1
fi

# Re-install libcurl4-openssl-dev, removed during docker build by ocserv
apt-get install -y libcurl4-openssl-dev

PATCH_DIR=${CWD}/patches
if [ -d $PATCH_DIR ]; then
    for patch in $(ls ${PATCH_DIR})
    do
        echo "I: Apply patch: ${patch} to main repository"
        cp ${PATCH_DIR}/${patch} ${SRC}/debian/patches/
        echo ${patch} >> ${SRC}/debian/patches/series
    done
fi

cd ${SRC}
echo "I: Build Debian Package"
dpkg-buildpackage -uc -us -tc -b