2023-06-11 17:04:47 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
# Clone Upstream
|
2023-06-11 17:07:49 +02:00
|
|
|
git clone --recurse-submodules https://github.com/nwg-piotr/nwg-look
|
|
|
|
cd nwg-look
|
2023-10-02 18:13:34 +02:00
|
|
|
git checkout v0.2.4
|
2023-06-11 17:07:49 +02:00
|
|
|
cp -rvf ../debian ./
|
|
|
|
cp -vf ../Makefile ./Makefile
|
2023-06-11 17:04:47 +02:00
|
|
|
|
|
|
|
# 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/
|