2023-04-29 17:27:11 +02:00
|
|
|
# Clone Upstream
|
2023-07-13 16:31:54 +02:00
|
|
|
git clone --recursive https://github.com/Vanilla-OS/apx
|
|
|
|
cp -rvf ./debian ./apx/
|
2023-04-29 17:27:11 +02:00
|
|
|
cd ./apx
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|