15 lines
249 B
Bash
Executable File
15 lines
249 B
Bash
Executable File
# Clone Upstream
|
|
cd ./basefiles
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
|
|
# Build package
|
|
LOGNAME=root dh_make --createorig -y -l -p base-files_12.3ubuntu99
|
|
dpkg-buildpackage
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|