summaryrefslogtreecommitdiff
path: root/init
blob: 96b6af39a50ea7eb36c934159c34fe285a1be4c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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
unzip wix314-binaries.zip
cd wix-on-linux
./autogen.sh
./configure --bindir=/root/wix314-binaries
make
make install

rm -rf /var/cache/apk/*