generated from cosmic-packages/cosmic-applets
37 lines
931 B
Bash
Executable File
37 lines
931 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
VERSION="0.1.0"
|
|
|
|
# Clone Upstream
|
|
git clone https://github.com/pop-os/cosmic-settings.git
|
|
cd cosmic-settings
|
|
|
|
# Get build deps
|
|
perl -0777 -pe '
|
|
s{^(Build-Depends:\s*\n)(.+?)(\n\S)}{
|
|
my $start = $1;
|
|
my $deps = $2;
|
|
my $end = $3;
|
|
my @items = grep { !/^\s*(cargo|rustc|rust-all)\s*$/ }
|
|
split /,\s*\n/, $deps;
|
|
$start . join(",\n", @items) . $end;
|
|
}ems' ./debian/control > ./debian/control.tmp && mv ./debian/control.tmp ./debian/control
|
|
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-settings_"$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/
|