2023-06-11 16:41:08 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
# Clone Upstream
|
2023-06-11 16:50:19 +02:00
|
|
|
git clone --recurse-submodules https://github.com/lbonn/rofi.git
|
2023-06-11 16:42:35 +02:00
|
|
|
cd rofi
|
|
|
|
git checkout 1.7.5+wayland1
|
|
|
|
cp -rvf ../debian ./
|
2023-06-11 16:41:08 +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/
|