parent
c07b573acd
commit
336c8909c8
2 changed files with 3 additions and 3 deletions
4
build.sh
4
build.sh
|
@ -90,10 +90,10 @@ package_variant ffbuild/prefix "ffbuild/pkgroot/$BUILD_NAME"
|
|||
cd ffbuild/pkgroot
|
||||
if [[ "${TARGET}" == win* ]]; then
|
||||
OUTPUT_FNAME="${BUILD_NAME}.zip"
|
||||
zip -9 -r "${ARTIFACTS_PATH}/${OUTPUT_FNAME}" "$BUILD_NAME"
|
||||
docker run --rm -i $TTY_ARG "${UIDARGS[@]}" -v "${ARTIFACTS_PATH}":/out -v "${PWD}/${BUILD_NAME}":"/${BUILD_NAME}" -w / "$IMAGE" zip -9 -r "/out/${OUTPUT_FNAME}" "$BUILD_NAME"
|
||||
else
|
||||
OUTPUT_FNAME="${BUILD_NAME}.tar.xz"
|
||||
tar cJf "${ARTIFACTS_PATH}/${OUTPUT_FNAME}" "$BUILD_NAME"
|
||||
docker run --rm -i $TTY_ARG "${UIDARGS[@]}" -v "${ARTIFACTS_PATH}":/out -v "${PWD}/${BUILD_NAME}":"/${BUILD_NAME}" -w / "$IMAGE" tar cJf "/out/${OUTPUT_FNAME}" "$BUILD_NAME"
|
||||
fi
|
||||
cd -
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ RUN \
|
|||
apt-get -y update && \
|
||||
apt-get -y dist-upgrade && \
|
||||
apt-get -y install build-essential yasm nasm \
|
||||
xxd pkgconf curl wget unzip git subversion mercurial \
|
||||
xxd pkgconf curl wget unzip zip git subversion mercurial \
|
||||
autoconf automake libtool libtool-bin autopoint gettext cmake clang meson ninja-build \
|
||||
texinfo texi2html help2man flex bison groff \
|
||||
gperf itstool ragel libc6-dev libssl-dev \
|
||||
|
|
Loading…
Reference in a new issue