8 lines
217 B
Bash
8 lines
217 B
Bash
#!/bin/bash
|
|
sudo apt install devscripts rsync -y
|
|
yes | sudo mk-build-deps --install --remove
|
|
git submodule update --init --depth=1
|
|
rm build -rf
|
|
mkdir build && rsync -ra * build/
|
|
cd build
|
|
dpkg-buildpackage -b -us -uc
|