aboutsummaryrefslogtreecommitdiff
path: root/deployment/build.ubuntu.arm64
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-03-23 15:40:59 -0400
committerJoshua M. Boniface <joshua@boniface.me>2020-03-23 15:40:59 -0400
commit3e7a106a95a183ba4c7d1bf00d87e149463f0e23 (patch)
tree500b4276d936f9a2dd4468ab5188e44dc2772ac0 /deployment/build.ubuntu.arm64
parent9ce2af2a6c20c061bb1317728262bad305d05f27 (diff)
Add Ubuntu configurations
Diffstat (limited to 'deployment/build.ubuntu.arm64')
-rwxr-xr-xdeployment/build.ubuntu.arm6427
1 files changed, 27 insertions, 0 deletions
diff --git a/deployment/build.ubuntu.arm64 b/deployment/build.ubuntu.arm64
new file mode 100755
index 000000000..1d91b303a
--- /dev/null
+++ b/deployment/build.ubuntu.arm64
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+#= Ubuntu 18.04+ 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 arm64 --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