16 lines
285 B
Bash
Executable File
16 lines
285 B
Bash
Executable File
# Clone Upstream
|
|
git clone ./bottles https://github.com/bottlesdevs/Bottles -b 51.6
|
|
cp -rvf ./debian ./bottles/
|
|
cd ./bottles
|
|
|
|
# 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/
|