33 lines
794 B
Bash
Executable File
33 lines
794 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=1.11.8
|
|
APP=element-web
|
|
DEPOT=https://github.com/vector-im/element-web.git
|
|
GIT_VERSION=v${VERSION}
|
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
|
DEBIAN_VERSION_CODENAME=bullseye
|
|
IMAGE_SIZE=4
|
|
|
|
STEP="base_package_upgrade envinit get_git_source build makedeb"
|
|
|
|
envinit() {
|
|
configure_depot_yarn
|
|
configure_depot_nodejs
|
|
apt install -y --no-install-recommends yarn nodejs
|
|
}
|
|
|
|
build() {
|
|
cd /tmp/${APP}
|
|
yarn install
|
|
yarn dist
|
|
}
|
|
|
|
makedeb(){
|
|
PATH_DEB=/tmp/src/rootfs
|
|
|
|
tar -zxf /tmp/${APP}/dist/element-${GIT_VERSION}.tar.gz --strip-components=1 -C ${PATH_DEB}/usr/share/element-web/
|
|
cp /tmp/${APP}/config.sample.json ${PATH_DEB}/etc/element-web/config.json
|
|
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
|
|
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
|
|
}
|