2023-02-24 15:13:32 +01:00
|
|
|
# Clone Upstream
|
2023-07-13 21:45:05 +02:00
|
|
|
git clone https://github.com/Vanilla-OS/apx-gui
|
2023-07-13 22:11:06 +02:00
|
|
|
cd ./apx-gui
|
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/
|