2024-10-27 18:45:24 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
2024-11-08 17:19:46 +01:00
|
|
|
VERSION="2.29.0"
|
2024-10-27 18:45:24 +01:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-10-27 18:46:16 +01:00
|
|
|
git clone https://github.com/fastfetch-cli/fastfetch.git
|
|
|
|
cd fastfetch
|
2024-10-27 18:45:24 +01:00
|
|
|
|
|
|
|
# Get build deps
|
2024-10-27 18:46:16 +01:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p fastfetch_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-10-27 18:45:24 +01:00
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|