34 lines
629 B
Bash
34 lines
629 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
. ./pika-build-config.sh
|
||
|
|
||
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
||
|
|
||
|
VERSION="0.15.4"
|
||
|
|
||
|
# Clone Upstream
|
||
|
UPSTREAM_NAME="pwvucontrol"
|
||
|
|
||
|
# Checkout and munch
|
||
|
git clone https://github.com/saivert/pwvucontrol.git "${UPSTREAM_NAME}"
|
||
|
cp -rvf ./debian ./${UPSTREAM_NAME}/
|
||
|
|
||
|
# Get in there.
|
||
|
pushd "./${UPSTREAM_NAME}/" || exit 1
|
||
|
|
||
|
# Get build deps
|
||
|
LOGNAME=root dh_make --createorig -y -l -p ${UPSTREAM_NAME}_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
||
|
apt -y update
|
||
|
apt -y build-dep ./
|
||
|
|
||
|
# Build package
|
||
|
dpkg-buildpackage --no-sign
|
||
|
|
||
|
popd || exit 2
|
||
|
|
||
|
# Move the debs to output
|
||
|
mkdir -p ./output
|
||
|
mv ./*.deb ./output/
|