Renaud Lepage
fc5b7a597d
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 1m51s
* Upstream got an update. * I did a dumb and used the copypaste version from another package's config originally Reviewed-on: #1 Reviewed-by: ferreo <ferreo@noreply.pika> Co-authored-by: Renaud Lepage <root@cybikbase.com> Co-committed-by: Renaud Lepage <root@cybikbase.com>
38 lines
744 B
Bash
Executable File
38 lines
744 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
VERSION="0.4.7"
|
|
|
|
# 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
|
|
|
|
# Checking out the tag in the clone should work.
|
|
# If it doesn't, this script is broken.
|
|
git checkout "${VERSION}"
|
|
|
|
# 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/
|