2024-08-12 03:06:28 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2024-08-12 03:16:25 +02:00
|
|
|
VERSION="1.1.1.git1"
|
2024-08-12 03:06:28 +02:00
|
|
|
|
2024-08-12 03:16:25 +02:00
|
|
|
source ./pika-build-config.sh
|
2024-08-12 03:06:28 +02:00
|
|
|
|
2024-08-12 03:16:25 +02:00
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
2024-08-12 03:06:28 +02:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-08-12 03:16:25 +02:00
|
|
|
#git clone https://github.com/NVIDIA/egl-gbm -b "$VERSION"
|
|
|
|
git clone https://github.com/NVIDIA/egl-gbm ./nvidia-egl-gbm
|
|
|
|
cp -rvf ./debian ./nvidia-egl-gbm
|
|
|
|
cd ./nvidia-egl-gbm
|
|
|
|
#for i in $(cat ../patches/series) ; do echo "Applying Patch: $i" && patch -Np1 -i ../patches/$i || bash -c "echo "Applying Patch $i Failed!" && exit 2"; done
|
2024-08-12 03:06:28 +02:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2024-08-12 03:16:25 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p nvidia-egl-gbm_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-08-12 03:06:28 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|