2022-02-12 18:30:28 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-11-05 15:38:51 +01:00
|
|
|
VERSION=1.11.78
|
2022-02-28 23:26:47 +01:00
|
|
|
APP=element-web
|
2022-03-06 00:37:44 +01:00
|
|
|
DEPOT=https://github.com/vector-im/element-web.git
|
2022-03-04 20:50:46 +01:00
|
|
|
GIT_VERSION=v${VERSION}
|
2022-04-12 22:51:18 +02:00
|
|
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
2024-05-15 10:20:52 +02:00
|
|
|
DEBIAN_VERSION_CODENAME=bookworm
|
2022-10-11 22:59:52 +02:00
|
|
|
IMAGE_SIZE=5
|
2022-10-08 03:58:00 +02:00
|
|
|
PACKAGE_DEPENDENCY="yarn nodejs"
|
2022-02-28 23:26:47 +01:00
|
|
|
|
2022-10-08 03:58:00 +02:00
|
|
|
main(){
|
|
|
|
base_package_upgrade
|
2022-08-05 06:12:11 +02:00
|
|
|
configure_depot_yarn
|
2024-08-14 22:00:45 +02:00
|
|
|
configure_depot_nodejs 20
|
2022-10-08 03:58:00 +02:00
|
|
|
install_package_dependency
|
2024-08-14 22:00:45 +02:00
|
|
|
build
|
|
|
|
makedeb
|
2022-02-12 18:30:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2022-03-04 21:47:14 +01:00
|
|
|
cd /tmp/${APP}
|
2022-02-12 18:30:28 +01:00
|
|
|
yarn install
|
|
|
|
yarn dist
|
|
|
|
}
|
|
|
|
|
|
|
|
makedeb(){
|
2022-02-24 00:02:53 +01:00
|
|
|
PATH_DEB=/tmp/src/rootfs
|
2022-12-23 01:04:28 +01:00
|
|
|
|
2022-10-30 07:44:48 +01:00
|
|
|
tar -zxf /tmp/${APP}/dist/element-${GIT_VERSION}*.tar.gz --strip-components=1 -C ${PATH_DEB}/usr/share/element-web/
|
2022-03-04 21:47:14 +01:00
|
|
|
cp /tmp/${APP}/config.sample.json ${PATH_DEB}/etc/element-web/config.json
|
2022-10-08 03:58:00 +02:00
|
|
|
|
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
|
|
|
}
|