2023-03-02 22:16:54 +01:00
|
|
|
# Clone Upstream
|
|
|
|
cd ./basefiles
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-03-30 21:58:03 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p base-files_12.3ubuntu99
|
2023-03-03 15:38:57 +01:00
|
|
|
dpkg-buildpackage
|
2023-03-02 22:16:54 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
2023-03-03 15:38:57 +01:00
|
|
|
mv ./*.deb ./output/
|