You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
693 B
30 lines
693 B
#!/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
|
|
cp -a debian/control /tmp/control.orig
|
|
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 arm64 --pre-clean --post-clean
|
|
|
|
mkdir -p ${ARTIFACT_DIR}/
|
|
mv ../jellyfin*.{deb,dsc,tar.gz,buildinfo,changes} ${ARTIFACT_DIR}/
|
|
|
|
if [[ ${IS_DOCKER} == YES ]]; then
|
|
cp -a /tmp/control.orig debian/control
|
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
|
fi
|
|
|
|
popd
|