diff options
| author | Alexander M Pickering <alex@cogarr.net> | 2024-10-08 01:44:29 -0500 |
|---|---|---|
| committer | Alexander M Pickering <alex@cogarr.net> | 2024-10-08 01:44:29 -0500 |
| commit | f34c9eca15529f90e2f7c450b51d36138e178b35 (patch) | |
| tree | 3728d0595758de6bc6466ef5f4744e27484cbd34 | |
| parent | adb9d8c609f660b9865c97f937378397ec8c0b14 (diff) | |
| download | wix-packaging-f34c9eca15529f90e2f7c450b51d36138e178b35.tar.gz wix-packaging-f34c9eca15529f90e2f7c450b51d36138e178b35.tar.bz2 wix-packaging-f34c9eca15529f90e2f7c450b51d36138e178b35.zip | |
Don't need the wix repo, actually
We use the prebuilt binaires from the wix repo instead.
| -rwxr-xr-x | init | 4 | ||||
| -rw-r--r-- | meta.lua | 1 |
2 files changed, 3 insertions, 2 deletions
| @@ -6,11 +6,13 @@ echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositori | |||
| 6 | 6 | ||
| 7 | apk update | 7 | apk update |
| 8 | apk add automake autoconf libtool build-base mono | 8 | apk add automake autoconf libtool build-base mono |
| 9 | unzip wix314-binaries.zip | 9 | mkdir wix314-binaries |
| 10 | unzip wix314-binaries.zip -d wix314-binaries | ||
| 10 | cd wix-on-linux | 11 | cd wix-on-linux |
| 11 | ./autogen.sh | 12 | ./autogen.sh |
| 12 | ./configure --bindir=/root/wix314-binaries | 13 | ./configure --bindir=/root/wix314-binaries |
| 13 | make | 14 | make |
| 14 | make install | 15 | make install |
| 15 | 16 | ||
| 17 | apk del build-base | ||
| 16 | rm -rf /var/cache/apk/* | 18 | rm -rf /var/cache/apk/* |
| @@ -1,7 +1,6 @@ | |||
| 1 | return { | 1 | return { |
| 2 | ["image-wix"] = { | 2 | ["image-wix"] = { |
| 3 | requires = { | 3 | requires = { |
| 4 | {"git", "wix#main"}, | ||
| 5 | {"git", "wix-on-linux#main"}, | 4 | {"git", "wix-on-linux#main"}, |
| 6 | {"http","https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip"}, | 5 | {"http","https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip"}, |
| 7 | }, | 6 | }, |
