jellyfin-server/deployment/build.debian.amd64

29 lines
595 B
Plaintext
Raw Normal View History

#!/bin/bash
2020-03-23 19:40:19 +00:00
#= Debian 10+ amd64 .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
2020-03-23 20:01:25 +00:00
cp debian/control debian/control.orig
sed -i '/dotnet-sdk-3.1,/d' debian/control
fi
# Build DEB
dpkg-buildpackage -us -uc --pre-clean --post-clean
mkdir -p ${ARTIFACT_DIR}/
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
if [[ ${IS_DOCKER} == YES ]]; then
2020-03-23 20:01:25 +00:00
mv debian/control.orig debian/control
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
fi
popd