debmaker/ressources/vaultwarden-web/debmaker

56 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-02-12 18:30:28 +01:00
#!/bin/bash
[ -e ./lib/function.sh ] && source ./lib/function.sh
APP=vaultwarden-web
VERSION=2.25.1
GIT_VERSION=v$VERSION
DEB_VERSION=$VERSION-2
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=
2022-02-20 15:02:18 +01:00
STEP="envinit prebuild build makedeb"
2022-02-12 18:30:28 +01:00
envinit() {
2022-02-21 22:18:59 +01:00
apt install -y --no-install-recommends wget fakeroot dpkg ca-certificates build-essential git python
2022-02-12 18:30:28 +01:00
wget -qO - https://deb.nodesource.com/setup_16.x | bash
apt-get update
apt-get install -y nodejs
}
prebuild(){
2022-02-21 22:18:59 +01:00
GIT_VERSION=$1
2022-02-12 18:30:28 +01:00
2022-02-21 22:18:59 +01:00
GIT_VERSION=$1
git clone --depth 1 -b ${GIT_VERSION} https://github.com/bitwarden/web.git /tmp/web-vault
2022-02-12 18:30:28 +01:00
cd /tmp/web-vault
git submodule update --init --recursive
cd ..
git clone https://github.com/dani-garcia/bw_web_builds.git
cd bw_web_builds
PATCH=$(git tag --sort=v:refname | tail -n1)
git checkout ${PATCH}
2022-02-21 22:18:59 +01:00
PATCH_FILE=$(ls patches/ | sort -V | tail -n 1)
cp patches/${PATCH_FILE} ../web-vault/
2022-02-12 18:30:28 +01:00
cd /tmp/web-vault
2022-02-21 22:18:59 +01:00
git apply ${PATCH_FILE}
2022-02-12 18:30:28 +01:00
}
build() {
cd /tmp/web-vault
npm install
npm run dist:oss:selfhost
}
makedeb(){
2022-02-20 15:02:18 +01:00
GIT_VERSION=$1
DEB_VERSION=$2
2022-02-24 00:02:53 +01:00
PATH_DEB=/tmp/src/rootfs
2022-02-12 18:30:28 +01:00
2022-02-20 15:02:18 +01:00
cp -fr /tmp/web-vault/build/* ${PATH_DEB}/usr/share/vaultwarden-web
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
}