2023-04-29 17:27:11 +02:00
|
|
|
# Clone Upstream
|
2023-07-13 00:58:51 +02:00
|
|
|
git clone --recursive -b main https://github.com/PikaOS-Linux/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/
|