generated from cosmic-packages/cosmic-applets
30 lines
904 B
Bash
Executable File
30 lines
904 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
VERSION="0.1"
|
|
|
|
# Clone Upstream
|
|
git clone https://github.com/pop-os/cosmic-comp.git -b drm-syncobj
|
|
cd cosmic-comp
|
|
|
|
sed -i '/^\s*\(cargo\|rustc\|rust-all\)\s*\(([^)]*)\)\?\s*,\?$/d; s/,\s*\(cargo\|rustc\|rust-all\)\s*\(([^)]*)\)\?\s*,\?//g' ./debian/control
|
|
sed -i '2iexport PATH := $(shell . /root/.cargo/env && echo $$PATH)\nexport $(shell . /root/.cargo/env && env | grep "^CARGO_\|^RUSTUP_" | sed "s/=/:=/")\n' ./debian/rules
|
|
# 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
|
|
|
|
LOGNAME=root dh_make --createorig -y -l -p cosmic-comp_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
# Build package
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|