blob: 6e6ed80470d842eca5f59fd3f1482ea3c5302bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh -ex
rc-service networking start
echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
apk update
apk add automake autoconf libtool build-base mono cabextract msitools
mkdir wix314-binaries
unzip wix314-binaries.zip -d wix314-binaries
cd wix-on-linux
./autogen.sh
./configure --bindir=/root/wix314-binaries
make
make install
make clean
cd /root
mv wix314-binaries wix
# Call binaries as wix/candle and wix/light
apk del build-base
rm -rf /var/cache/apk/*
|