diff options
Diffstat (limited to 'init')
-rwxr-xr-x | init | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -1 +1,16 @@ | |||
1 | #!/bin/sh -ex | 1 | #!/bin/sh -ex |
2 | |||
3 | rc-service networking start | ||
4 | |||
5 | echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories | ||
6 | |||
7 | apk update | ||
8 | apk add automake autoconf libtool build-base mono | ||
9 | unzip | ||
10 | cd wix-on-linux | ||
11 | ./autogen.sh | ||
12 | ./configure --bindir=/root/wix | ||
13 | make | ||
14 | make install | ||
15 | |||
16 | rm -rf /var/cache/apk/* | ||