2023-03-29 17:56:37 +02:00
|
|
|
# Clone Upstream
|
2023-05-02 00:20:11 +02:00
|
|
|
git clone https://github.com/v1cont/yad -b v12.3
|
2023-03-29 17:56:37 +02:00
|
|
|
cp -rvf ./debian ./yad
|
|
|
|
cd ./yad
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|