2023-02-24 09:13:32 -05:00
|
|
|
# Clone Upstream
|
2023-06-26 11:21:47 +03:00
|
|
|
git clone https://github.com/bottlesdevs/Bottles -b 51.6 ./bottles
|
2023-06-26 11:17:44 +03:00
|
|
|
cp -rvf ./debian ./bottles/
|
|
|
|
cd ./bottles
|
2023-02-24 09:13:32 -05:00
|
|
|
|
|
|
|
# Get build deps
|
2023-02-24 17:39:01 +03:00
|
|
|
apt-get build-dep ./ -y
|
2023-02-24 09:13:32 -05:00
|
|
|
|
2023-02-24 17:56:38 +03:00
|
|
|
# Build package
|
2023-05-11 11:22:59 +03:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-02-24 17:56:38 +03:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|