From 97204e85173aa7f960cbf088d28a019d9b3ab43e Mon Sep 17 00:00:00 2001 From: Alexander M Pickering Date: Tue, 8 Oct 2024 01:14:34 -0500 Subject: start working on the wix image --- init | 15 +++++++++++++++ meta.lua | 9 +++++++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/init b/init index 642d265..e908240 100755 --- a/init +++ b/init @@ -1 +1,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 +cd wix-on-linux +./autogen.sh +./configure --bindir=/root/wix +make +make install + +rm -rf /var/cache/apk/* diff --git a/meta.lua b/meta.lua index 8acb314..b7e2102 100644 --- a/meta.lua +++ b/meta.lua @@ -1,6 +1,11 @@ return { - ["wix"] = { - requires = {}, + ["image-wix"] = { + requires = { + {"git", "wix"}, + {"git", "wix-on-linux"}, + {"http","https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip"}, + }, produces = {}, + export=true, } } -- cgit v1.2.3-55-g6feb