authelia version update

This commit is contained in:
thomas 2022-03-28 22:42:52 +02:00
parent 9893d532f9
commit a36f18bb86
4 changed files with 41 additions and 6 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash
VERSION=4.34.5
VERSION=4.34.6
RELEASE=1
[ -e ./lib/function.sh ] && source ./lib/function.sh

View file

@ -0,0 +1,35 @@
#!/bin/bash
VERSION=4.0.4
[ -e ./lib/function.sh ] && source ./lib/function.sh
APP=slimbookbattery
DEPOT=https://launchpad.net/~slimbook/+archive/ubuntu/slimbook/+sourcefiles/slimbookbattery/${VERSION}/slimbookbattery_${VERSION}.tar.gz
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=1
STEP="envinit prebuild build makedeb"
envinit() {
if [ $(dpkg -l | grep -e 'ii debhelper ' | wc -l) -eq 1 ];
then
apt-get update
apt-get dist-upgrade -y
else
apt install -y --no-install-recommends wget ca-certificates debhelper build-essential
fi
}
prebuild(){
wget -qO - ${DEPOT} | tar -zx -C /tmp/
}
build() {
cd /tmp/slimbookbattery-${VERSION}
dpkg-buildpackage --no-sign
}
makedeb(){
mv /tmp/slimbookbattery_${VERSION}_all.deb /tmp/dist
}