2023-03-18 13:20:15 +01:00
|
|
|
#! /bin/bash
|
2023-06-16 20:28:57 +02:00
|
|
|
|
2023-03-18 13:20:15 +01:00
|
|
|
# Clone Upstream
|
|
|
|
git clone https://codeberg.org/fabiscafe/game-devices-udev rules
|
2023-03-18 13:53:57 +01:00
|
|
|
mkdir -p ./game-devices-udev/etc/udev/rules.d/
|
|
|
|
cp -rvf ./rules/*.rules ./game-devices-udev/etc/udev/rules.d/
|
2023-09-29 18:56:27 +02:00
|
|
|
echo -e "game-devices-udev ("$(date '+%Y%m%d')".git-100pika2"$(date '+%M')") lunar; urgency=medium\n\n * New Upstream Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > game-devices-udev/debian/changelog
|
2023-03-18 13:30:18 +01:00
|
|
|
cd ./game-devices-udev
|
2023-03-18 13:20:15 +01:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-03-18 13:30:18 +01:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-03-18 13:20:15 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|