jellyfin/deployment/build.debian.armhf
Joshua M. Boniface f72c5b7a1d Fix version output
2020-03-23 15:40:19 -04:00

28 lines
576 B
Bash
Executable file

#!/bin/bash
#= Debian 10+ arm64 .deb
set -o errexit
set -o xtrace
# Move to source directory
pushd ${SOURCE_DIR}
if [[ ${IS_DOCKER} == YES ]]; then
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
sed -i '/dotnet-sdk-3.1,/d' debian/control
fi
# Build DEB
export CONFIG_SITE=/etc/dpkg-cross/cross-config.${ARCH}
dpkg-buildpackage -us -uc -a armhf --pre-clean --post-clean
mkdir -p ${ARTIFACT_DIR}/
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
if [[ ${IS_DOCKER} == YES ]]; then
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
fi
popd