21 lines
356 B
Bash
Executable File
21 lines
356 B
Bash
Executable File
#! /bin/bash
|
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Clone Upstream
|
|
git clone https://github.com/waycrate/wayshot.git --recurse-submodules
|
|
cd wayshot
|
|
cp -rvf ../debian ./
|
|
cp -vf ../Makefile ./Makefile
|
|
|
|
# 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/
|