diff options
-rwxr-xr-x | init | 15 | ||||
-rw-r--r-- | meta.lua | 9 |
2 files changed, 22 insertions, 2 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/* | ||
@@ -1,6 +1,11 @@ | |||
1 | return { | 1 | return { |
2 | ["wix"] = { | 2 | ["image-wix"] = { |
3 | requires = {}, | 3 | requires = { |
4 | {"git", "wix"}, | ||
5 | {"git", "wix-on-linux"}, | ||
6 | {"http","https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip"}, | ||
7 | }, | ||
4 | produces = {}, | 8 | produces = {}, |
9 | export=true, | ||
5 | } | 10 | } |
6 | } | 11 | } |