carapace-bridge/main.sh

28 lines
599 B
Bash
Raw Normal View History

2024-11-04 17:47:09 +01:00
#! /bin/bash
set -e
2024-11-04 17:48:16 +01:00
VERSION="1.1.0"
2024-11-04 17:47:09 +01:00
source ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
# Clone Upstream
2024-11-04 17:48:16 +01:00
git clone https://github.com/carapace-sh/carapace-bridge.git -b v"$VERSION" ./carapace-bridge
cp -rvf ./debian ./carapace-bridge/
cp -rvf ./Makefile-v3 ./carapace-bridge/Makefile
cd ./carapace-bridge
2024-11-04 17:47:09 +01:00
# Get build deps
apt-get build-dep ./ -y
# Build package
2024-11-04 17:53:06 +01:00
LOGNAME=root dh_make --createorig -y -l -p carapace-bridge_"$VERSION" || echo "dh-make: Ignoring Last Error"
2024-11-04 17:47:09 +01:00
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/