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.
22 lines
514 B
22 lines
514 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Builds the DEB inside the Docker container
|
||
|
|
||
|
set -o errexit
|
||
|
set -o xtrace
|
||
|
|
||
|
# Move to source directory
|
||
|
pushd ${SOURCE_DIR}
|
||
|
|
||
5 years ago
|
# Remove build-dep for dotnet-sdk-3.1, since it's not a package in this image
|
||
|
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
||
6 years ago
|
|
||
|
# Build DEB
|
||
|
export CONFIG_SITE=/etc/dpkg-cross/cross-config.${ARCH}
|
||
|
dpkg-buildpackage -us -uc -aarm64
|
||
|
|
||
|
# Move the artifacts out
|
||
|
mkdir -p ${ARTIFACT_DIR}/deb
|
||
5 years ago
|
mv /jellyfin[-_]* ${ARTIFACT_DIR}/deb/
|
||
6 years ago
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|