2023-03-04 15:13:25 +01:00
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
2023-03-04 15:10:19 +01:00
|
|
|
# Clone Upstream
|
2023-09-16 14:57:11 +02:00
|
|
|
git clone https://gitlab.com/asus-linux/asusctl -b 4.7.2
|
2023-03-04 15:10:19 +01:00
|
|
|
cp -rvf ./debian ./asusctl
|
|
|
|
cd ./asusctl
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-09-16 14:57:11 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p asusctl_4.7.2
|
2023-03-04 15:10:19 +01:00
|
|
|
dpkg-buildpackage
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|