16 lines
213 B
Bash
16 lines
213 B
Bash
|
DEBIAN_FRONTEND=noninteractive
|
||
|
|
||
|
# Clone Upstream
|
||
|
cd ./neofetch
|
||
|
|
||
|
# Get build deps
|
||
|
apt-get build-dep ./ -y
|
||
|
|
||
|
# Build package
|
||
|
dpkg-buildpackage
|
||
|
|
||
|
# Move the debs to output
|
||
|
cd ../
|
||
|
mkdir -p ./output
|
||
|
mv ./*.deb ./output/
|