Lee Armet
09/01/2021, 6:22 PMBenjamin Edwards
09/01/2021, 6:54 PMLee Armet
09/01/2021, 7:32 PMBenjamin Edwards
09/01/2021, 11:27 PMChad
09/02/2021, 3:48 AM# Install xar from source
RUN git clone --depth=1 \
--branch=master \
<https://github.com/mackyle/xar.git> \
&& cd /xar/xar; \
sed -i '332s/^.*$/AC_CHECK_LIB([crypto], [OPENSSL_init_crypto], , [have_libcrypto="0"])/' <http://configure.ac|configure.ac> \
&& ./autogen.sh --noconfigure \
&& ./configure LDFLAGS=-lfts \
&& make \
&& make install \
&& cd / \
&& rm -rf /xar
# Install bomutils from source
RUN git clone --depth=1 \
--branch=master \
<https://github.com/hogliux/bomutils.git> \
&& cd bomutils \
&& make \
&& make install \
&& chmod 755 build/bin/mkbom \
&& cp build/bin/mkbom /usr/local/bin/mkbom \
&& cd / \
&& rm -rf /bomutils
Stijn Pieters
09/02/2021, 10:50 AMerror="build pkg: mkbom: exit status 1"
when running go run -v ./cmd/package --type=pkg
. The only other valuable output I get is Unable to find path: /tmp/orbit-package3699160814/flat/root
Any idea how to fix?Lee Armet
09/02/2021, 12:23 PMChad
09/02/2021, 2:37 PMStijn Pieters
09/02/2021, 3:08 PMerror="create root dir: Path /tmp/orbit-package2211337692 already exists with mode 20000000700 instead of the expected 20000000755"
Running git checkout d0bb3202785ac6b69f1e6542f55c77e9eb28f5a2
fixes this, but then I can't build Mac packages :-PLee Armet
09/02/2021, 6:09 PMChad
09/03/2021, 3:14 AMLee Armet
09/08/2021, 7:19 PM