aboutsummaryrefslogtreecommitdiff
path: root/deployment/build.ubuntu.amd64
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/build.ubuntu.amd64')
-rwxr-xr-xdeployment/build.ubuntu.amd6428
1 files changed, 28 insertions, 0 deletions
diff --git a/deployment/build.ubuntu.amd64 b/deployment/build.ubuntu.amd64
new file mode 100755
index 000000000..107ddbe02
--- /dev/null
+++ b/deployment/build.ubuntu.amd64
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+#= Ubuntu 18.04+ 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
+ cp -a debian/control /tmp/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*.{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