generated from general-packages/pika-pkg-template
39 lines
946 B
Bash
39 lines
946 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
. ./pika-build-config.sh
|
||
|
|
||
|
if [[ $PIKA_BUILD_ARCH == "amd64-v3" ]]
|
||
|
then
|
||
|
export PIKA_BIN_ARCH="amd64"
|
||
|
fi
|
||
|
|
||
|
if [[ $PIKA_BUILD_ARCH == "i386" ]]
|
||
|
then
|
||
|
export PIKA_BIN_ARCH="i386"
|
||
|
fi
|
||
|
|
||
|
mkdir -p ./output
|
||
|
|
||
|
#
|
||
|
for bin_pkg in $(apt showsrc "PIKA_PACKAGE_VERSION" | grep -E "^Binary:" | cut -d":" -f2- | sed 's/\,/\n/g' | sed 's/\ /\n/g' | sed '/^$/d')
|
||
|
do
|
||
|
BIN_VERSION=$(apt show $bin_pkg:$PIKA_BIN_ARCH 2>&1 | grep Version: | head -n1 | cut -f2- -d":" | cut -f2- -d":" | tr -d ' ')
|
||
|
TARGET_VERSION=$(echo $BIN_VERSION | sed 's/\+b.*//')
|
||
|
apt download -y $bin_pkg:$PIKA_BIN_ARCH || echo "$bin_pkg doesn't exist in $PIKA_BIN_ARCH"
|
||
|
if [[ $BIN_VERSION == $TARGET_VERSION ]]
|
||
|
then
|
||
|
mv ./*.deb ./output/
|
||
|
else
|
||
|
for i in ./*.deb
|
||
|
do
|
||
|
mkdir $i-tmp
|
||
|
dpkg-deb -R $i $i-tmp
|
||
|
sed -i "s#$BIN_VERSION#$TARGET_VERSION#g" $i-tmp/DEBIAN/control
|
||
|
dpkg-deb -b $i-tmp $i-fixed.deb
|
||
|
mv ./*-fixed.deb ./output/
|
||
|
done
|
||
|
fi
|
||
|
done
|