2019-02-08 19:08:34 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Builds the DEB inside the Docker container
|
|
|
|
|
|
|
|
set -o errexit
|
|
|
|
set -o xtrace
|
|
|
|
|
|
|
|
# Move to source directory
|
|
|
|
pushd ${SOURCE_DIR}
|
|
|
|
|
2019-11-26 01:47:26 -07:00
|
|
|
# Remove build-dep for dotnet-sdk-3.0, since it's not a package in this image
|
|
|
|
sed -i '/dotnet-sdk-3.0,/d' debian/control
|
2019-02-09 17:32:06 -07:00
|
|
|
|
2019-02-08 19:08:34 -07:00
|
|
|
# Build DEB
|
|
|
|
dpkg-buildpackage -us -uc
|
|
|
|
|
|
|
|
# Move the artifacts out
|
|
|
|
mkdir -p ${ARTIFACT_DIR}/deb
|
2019-07-13 09:04:26 -07:00
|
|
|
mv /jellyfin[-_]* ${ARTIFACT_DIR}/deb/
|
2019-04-24 20:33:17 -07:00
|
|
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|