debmaker/ressources/element-web/debmaker

41 lines
814 B
Plaintext
Raw Normal View History

2022-02-12 18:30:28 +01:00
#!/bin/bash
2022-11-19 19:56:01 +01:00
VERSION=1.11.14
APP=element-web
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)
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=5
2022-10-08 03:58:00 +02:00
PACKAGE_DEPENDENCY="yarn nodejs"
2022-10-08 03:58:00 +02:00
main(){
base_package_upgrade
envinit
get_git_source
build
makedeb
}
2022-02-20 15:02:18 +01:00
2022-02-12 18:30:28 +01:00
envinit() {
2022-08-05 06:12:11 +02:00
configure_depot_yarn
configure_depot_nodejs
2022-10-08 03:58:00 +02:00
install_package_dependency
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-02-20 15:02:18 +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
}