0c77d72d15
Some checks failed
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Failing after 10s
82 lines
2.8 KiB
Bash
Executable File
82 lines
2.8 KiB
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
VERSION=20.9.1
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
apt-get install curl -y
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/root/.cargo sh -s -- -y
|
|
|
|
# Build ALVR
|
|
git clone https://github.com/alvr-org/ALVR --recursive -b v"$VERSION"
|
|
cd ./ALVR
|
|
export CARGO_PROFILE_RELEASE_LTO=true
|
|
export RUSTUP_TOOLCHAIN=stable
|
|
export CARGO_TARGET_DIR=target
|
|
sed -i 's:../../../lib64/libalvr_vulkan_layer.so:libalvr_vulkan_layer.so:' alvr/vulkan_layer/layer/alvr_x86_64.json
|
|
cargo fetch --locked --target "x86_64-unknown-linux-gnu"
|
|
export ALVR_ROOT_DIR=/usr
|
|
export ALVR_LIBRARIES_DIR="$ALVR_ROOT_DIR/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH)"
|
|
export ALVR_OPENVR_DRIVER_ROOT_DIR="$ALVR_LIBRARIES_DIR/steamvr/alvr/"
|
|
export ALVR_VRCOMPOSITOR_WRAPPER_DIR="$ALVR_LIBRARIES_DIR/alvr/"
|
|
export FIREWALL_SCRIPT_DIR="$ALVR_ROOT_DIR/share/alvr/"
|
|
cargo run --release --frozen -p alvr_xtask -- prepare-deps --platform linux
|
|
cargo build \
|
|
--frozen \
|
|
--release \
|
|
-p alvr_server \
|
|
-p alvr_dashboard \
|
|
-p alvr_vulkan_layer \
|
|
-p alvr_vrcompositor_wrapper
|
|
for res in 16x16 32x32 48x48 64x64 128x128 256x256; do
|
|
mkdir -p "icons/hicolor/${res}/apps/"
|
|
convert 'alvr/dashboard/resources/dashboard.ico' -thumbnail "${res}" -alpha on -background none -flatten "./icons/hicolor/${res}/apps/alvr.png"
|
|
done
|
|
mkdir -p ../alvr
|
|
cp -rvf ../debian ../alvr/
|
|
|
|
# Make ALVR Dir
|
|
install -Dm644 LICENSE -t "../alvr/usr/share/licenses/$pkgname/"
|
|
install -Dm755 target/release/alvr_dashboard -t "../alvr/usr/bin/"
|
|
|
|
# vrcompositor wrapper
|
|
install -Dm755 target/release/alvr_vrcompositor_wrapper "../alvr/usr/lib/alvr/vrcompositor-wrapper"
|
|
install -Dm644 target/release/alvr_drm_lease_shim.so "../alvr/usr/lib/alvr/alvr_drm_lease_shim.so"
|
|
|
|
# OpenVR Driver
|
|
install -Dm644 target/release/libalvr_server.so "../alvr/usr/lib/steamvr/alvr/bin/linux64/driver_alvr_server.so"
|
|
install -Dm644 alvr/xtask/resources/driver.vrdrivermanifest -t "../alvr/usr/lib/steamvr/alvr/"
|
|
|
|
# Vulkan Layer
|
|
install -Dm644 target/release/libalvr_vulkan_layer.so -t "../alvr/usr/lib/"
|
|
install -Dm644 alvr/vulkan_layer/layer/alvr_x86_64.json -t "../alvr/usr/share/vulkan/explicit_layer.d/"
|
|
|
|
# Desktop
|
|
install -Dm644 "alvr/xtask/resources/$pkgname.desktop" -t "../alvr/usr/share/applications"
|
|
|
|
# Icons
|
|
install -d ../alvr/usr/share/icons/hicolor/{16x16,32x32,48x48,64x64,128x128,256x256}/apps/
|
|
cp -ar icons/* ../alvr/usr/share/icons/
|
|
|
|
# Firewall
|
|
install -Dm644 alvr/xtask/firewall/ufw-alvr -t "../alvr/etc/ufw/applications.d/"
|
|
|
|
install -Dm755 alvr/xtask/firewall/alvr_fw_config.sh -t "../alvr/usr/share/alvr/"
|
|
|
|
cd ../alvr
|
|
|
|
# Build package
|
|
LOGNAME=root dh_make --createorig -y -l -p alvr_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|