2023-08-14 17:36:20 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
2023-02-24 15:13:32 +01:00
|
|
|
# Clone Upstream
|
2023-07-13 22:15:24 +02:00
|
|
|
git clone https://github.com/Vanilla-OS/apx-gui ./vanilla-apx-gui
|
|
|
|
cd ./vanilla-apx-gui
|
2023-08-14 17:33:29 +02:00
|
|
|
rm -rfv debian/changelog
|
|
|
|
touch debian/changelog
|
|
|
|
echo -e "vanilla-apx-gui (1.0.2-99pika2.lunar) lunar; urgency=medium\n\n * New Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
|
|
|
|
|
2023-02-24 15:13:32 +01:00
|
|
|
|
|
|
|
# Get build deps
|
2023-02-24 15:39:01 +01:00
|
|
|
apt-get build-dep ./ -y
|
2023-02-24 15:13:32 +01:00
|
|
|
|
2023-02-24 15:56:38 +01:00
|
|
|
# Build package
|
2023-05-11 10:22:59 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-02-24 15:56:38 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|