mesa-git/main32.sh

22 lines
550 B
Bash
Raw Normal View History

2023-08-07 21:38:10 +02:00
#! /bin/bash
set -e
2023-08-07 18:05:10 +02:00
# Clone Upstream
2023-08-07 20:01:05 +02:00
git clone https://gitlab.freedesktop.org/mesa/mesa
2023-08-07 18:05:10 +02:00
cp -rvf ./debian ./mesa/
cd ./mesa
2023-08-07 19:12:07 +02:00
touch debian/changelog
2023-08-07 20:01:05 +02:00
echo -e "mesa (23.3.git."$(git rev-parse --short HEAD)"-99pika"$(date '+%Y%m%d')") lunar; urgency=medium\n\n * New GIT Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
2023-08-07 18:05:10 +02:00
# Get build deps
apt-get build-dep ./ -y
# Build package
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
2023-08-07 19:12:07 +02:00
mv ./mesa-vulkan*.deb ./output/