2023-03-29 17:56:37 +02:00
|
|
|
# Clone Upstream
|
2023-09-28 23:01:57 +02:00
|
|
|
git clone https://github.com/v1cont/yad -b v13.0
|
2023-03-29 17:56:37 +02:00
|
|
|
cp -rvf ./debian ./yad
|
|
|
|
cd ./yad
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-09-29 13:21:31 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-03-29 17:56:37 +02:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|