18 lines
214 B
Bash
18 lines
214 B
Bash
|
#! /bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Clone Upstream
|
||
|
cd ./mesa-pika
|
||
|
|
||
|
# Get build deps
|
||
|
apt-get build-dep ./ -y
|
||
|
|
||
|
# Build package
|
||
|
|
||
|
dpkg-buildpackage --no-sign
|
||
|
|
||
|
# Move the debs to output
|
||
|
cd ../
|
||
|
mkdir -p ./output
|
||
|
mv ./*.deb ./output/
|