2023-03-04 13:48:54 +01:00
|
|
|
# Clone Upstream
|
2023-05-27 09:49:25 +02:00
|
|
|
git clone https://github.com/medusalix/xone
|
2023-03-04 13:48:54 +01:00
|
|
|
cp -rvf ./debian ./xone
|
|
|
|
cd ./xone
|
|
|
|
|
|
|
|
# Get build deps
|
2023-06-16 19:44:27 +02:00
|
|
|
apt-get install dh-make -y
|
2023-03-04 13:48:54 +01:00
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-05-27 09:51:10 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p xone_0.3.git
|
2023-03-04 13:48:54 +01:00
|
|
|
dpkg-buildpackage
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|