debmaker/ressources/authelia/debmaker

34 lines
861 B
Plaintext
Raw Normal View History

2022-02-12 18:30:28 +01:00
#!/bin/bash
VERSION=4.36.4
APP=authelia
2022-03-04 21:47:14 +01:00
DEPOT=https://github.com/authelia/authelia.git
2022-03-04 20:50:46 +01:00
GIT_VERSION=v${VERSION}
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=6
2022-08-17 20:35:16 +02:00
STEP="base_package_upgrade envinit get_git_source build makedeb"
2022-02-12 18:30:28 +01:00
envinit() {
configure_depot_nodejs
apt install -y --no-install-recommends build-essential nodejs
2022-08-05 06:12:11 +02:00
install_go
wget -qO - https://get.pnpm.io/install.sh | sh -
2022-02-12 18:30:28 +01:00
}
build() {
2022-03-04 21:47:14 +01:00
cd /tmp/${APP}/
PATH=$PATH:/usr/local/go/bin:/root/.local/share/pnpm
./cmd/authelia-scripts/authelia-scripts build
2022-02-12 18:30:28 +01:00
}
makedeb(){
2022-02-24 00:02:53 +01:00
PATH_DEB=/tmp/src/rootfs
2022-02-12 18:30:28 +01:00
2022-03-04 21:47:14 +01:00
cp /tmp/${APP}/dist/authelia ${PATH_DEB}/usr/bin/authelia
cp /tmp/${APP}/config.template.yml ${PATH_DEB}/etc/authelia/configuration.yml
2022-02-24 00:02:53 +01:00
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
2022-02-12 18:30:28 +01:00
}