booster/mainv3.sh

35 lines
1.1 KiB
Bash
Raw Normal View History

2023-08-30 19:46:02 +02:00
#! /bin/bash
2024-07-23 23:14:51 +02:00
set -e
VERSION="0.11.3.ferreogit"
export DEBIAN_FRONTEND="noninteractive"
export DEB_BUILD_MAINT_OPTIONS="optimize=+lto -march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_CFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_CPPFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_CXXFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_LDFLAGS_MAINT_APPEND="-march=x86-64-v3 -O3 -flto -fuse-linker-plugin -falign-functions=32"
export DEB_BUILD_OPTIONS="nocheck notest terse"
export DPKG_GENSYMBOLS_CHECK_LEVEL=0
2023-08-30 19:46:02 +02:00
# Clone Upstream
2024-03-23 15:58:06 +01:00
git clone https://github.com/ferrreo/booster.git
2024-07-23 23:14:51 +02:00
cp -rvf ./debian ./booster/
cp -vf ./Makefile ./booster/
cp -vf ./booster.yml ./booster/
cp -vf ./update-initramfs ./booster/
cd ./booster
2023-08-30 19:46:02 +02:00
# Get build deps
apt-get build-dep ./ -y
# Build package
2024-07-23 23:14:51 +02:00
LOGNAME=root dh_make --createorig -y -l -p booster_"$VERSION" || echo "dh-make: Ignoring Last Error"
2023-08-30 19:46:02 +02:00
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/