carapace/main.sh

28 lines
559 B
Bash
Raw Normal View History

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