2024-08-04 16:39:13 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
|
|
|
VERSION="0.1.0"
|
|
|
|
|
|
|
|
# Clone Upstream
|
2024-08-04 16:39:48 +02:00
|
|
|
git clone https://github.com/pop-os/cosmic-settings.git
|
|
|
|
cd cosmic-settings
|
2024-08-04 16:39:13 +02:00
|
|
|
|
|
|
|
# Get build deps
|
2024-08-04 17:42:43 +02:00
|
|
|
perl -0777 -pe '
|
|
|
|
s{^(Build-Depends:\s*\n)(.+?)(\n\S)}{
|
|
|
|
my $start = $1;
|
|
|
|
my $deps = $2;
|
|
|
|
my $end = $3;
|
|
|
|
$deps =~ s/^\s+//mg;
|
|
|
|
my @items = grep { !/^(cargo|rustc|rust-all)$/ }
|
|
|
|
split /,\s*\n?\s*/, $deps;
|
|
|
|
$start . join(",\n ", @items) . $end;
|
|
|
|
}ems' ./debian/control > ./debian/control.tmp && mv ./debian/control.tmp ./debian/control
|
2024-08-04 16:39:13 +02:00
|
|
|
apt-get build-dep ./ -y
|
2024-08-04 16:54:00 +02:00
|
|
|
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-settings_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-08-04 16:39:13 +02:00
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|