summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 019781abeb3377d84d9ff5f590046616e1586fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# Maintainer:  dreieck (https://aur.archlinux.org/account/dreieck)
# Contributor: lsf (https://aur.archlinux.org/account/lsf)
# Contributor: Bruno Pagani <archange@archlinux.org>
# Contributor: Steef Hegeman <mail@steefhegeman.com>
# Contributor: Luca Weiss <luca (at) z3ntu (dot) xyz>
# Contributor: Julian Schacher <jspp@posteo.net>

_electron="electron30"  # As of 2024-10-21, latest working version is `electron30`. See https://github.com/SchildiChat/schildichat-desktop/issues/265#issuecomment-2427793936.
_nodeversion=20         # As of 2024-10-20, the minimum version of `nodejs` is 20.
_pkgname="schildichat-desktop"
pkgname="${_pkgname}-git"
pkgver=1.11.85.sc.0.test.0.r517.20241113.491ad5a
pkgrel=1
pkgdesc="A Matrix client based on Element with a more traditional instant messaging experience. Build of the latest git checkout."
arch=(
  "x86_64"
)
url="https://schildi.chat"
license=('Apache-2.0')
conflicts=(
  "${_pkgname}"
  "${_pkgname}-bin"
)
provides=(
  "${_pkgname}=${pkgver}"
  "${_pkgname}-custom=${pkgver}"
  "${_pkgname}-git=${pkgver}"
)
makedepends=(
  "npm"
  "git"
  "yarn"
  "python"
  "python-setuptools"
  "rust"
  "tcl"
  "nodejs>=${_nodeversion}"
  "nvm"
  "libxcrypt-compat"
  "asar"
)
depends=(
  "${_electron}"
  "libsecret"
)
source=(
  "${_pkgname}::git+https://github.com/SchildiChat/schildichat-desktop.git#branch=lite"
  "git+https://github.com/SchildiChat/compound-web.git"
  "git+https://github.com/SchildiChat/matrix-js-sdk.git"
  # "git+https://github.com/SchildiChat/matrix-react-sdk.git"
  "git+https://github.com/SchildiChat/element-web.git"
  "git+https://github.com/SchildiChat/element-desktop.git"
  "autolaunch.patch"
  "schildichat-desktop.desktop"
  "schildichat-desktop.sh"
)
sha256sums=(
  'SKIP'  # schildichat-desktop (git)
  'SKIP'  # compound-web (git)
  'SKIP'  # matrix-js-sdk (git)
  # 'SKIP'  # matrix-react-sdk (git)
  'SKIP'  # element-web (git)
  'SKIP'  # element-desktop (git)
  '20533d63ffadf03dbfd173e6d4f1f1048746a628db7b2a70f5bc02390e812302'  # autolaunch.patch
  '6450af411fea039cb76357ff4ea7f1ef336601315de4d27b848a75d7960cef17'  # schildichat-desktop.desktop
  '8084211fe11ba23be956ef4b8bb0fffaa6aaa721b79f9753ecc3574666ef95ce'  # schildichat-desktop.sh
)

prepare() {
  cd ${_pkgname}
  export npm_config_cache="${srcdir}/npm_cache"
  _ensure_local_nvm
  #nvm install "${_nodeversion}" # Not needed; `nodejs>=${_nodeversion}` from the repositories suffices.

  git submodule init
  git config submodule.compound-web.url     "${srcdir}/compound-web"
  git config submodule.matrix-js-sdk.url    "${srcdir}/matrix-js-sdk"
  # git config submodule.matrix-react-sdk.url "${srcdir}/matrix-react-sdk"
  git config submodule.element-web.url      "${srcdir}/element-web"
  git config submodule.element-desktop.url  "${srcdir}/element-desktop"
  git -c protocol.file.allow=always submodule update

  # Specify electron version in launcher
  sed -i "s|@ELECTRON@|${_electron}|" "${srcdir}/schildichat-desktop.sh"

  _electron_dist="/usr/lib/${_electron}"
  _electron_ver="$(cat "${_electron_dist}/version")"

  cd element-desktop
  printf '%s\n' " --> Applying patch 'autolaunch.patch' ..."
  patch -Np1 --follow-symlinks -i "${srcdir}/autolaunch.patch"

  printf '%s\n' " --> Doing some fixups with sed in .json files ..."
  sed -i 's|"target": "deb"|"target": "dir"|' package.json
  sed -i "s|\"electronVersion\": \".*\"|\"electronVersion\": \"${_electron_ver}\"|" package.json # removed?
  sed -i "s|\"electron\": \".*\"|\"electron\": \"${_electron_ver}\"|" package.json
  sed -i 's|"https://packages.element.io/desktop/update/"|null|' element.io/release/config.json

  cd ${srcdir}/${_pkgname}

  git log > git.log

  printf '%s\n' " --> Running 'make setup' ..."
  make setup
}

pkgver() {
  cd "${_pkgname}"

  # _ver="$(git describe --tags | sed -E -e 's|^[vV]||' -e 's|\-g[0-9a-f]*$||' -e 's|-(sc)|.\1|' -e 's|-([0-9]+)$|+\1|')"  # <-- get version from git tags. Might be outdated.
  _ver="$(grep -E '^[[:space:]]*"version"[[:space:]]*:' "element-web/package.json" | head -n1 | awk -F: '{print $2}' | awk -F\" '{print $2}' | sed -E -e 's|^[vV]||' -e 's|\-g[0-9a-f]*$||' -e 's|-(sc)|.\1|' -e 's|-([0-9]+)$|+\1|')"
  # "element-web/package.json"   # <-- this file to parse the version from.
  # "element-web/webapp/version" # <-- this file might directly contain the version.
  _rev="$(git rev-list --count HEAD)"
  _date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
  _hash="$(git rev-parse --short HEAD)"

  if [ -z "${_ver}" ]; then
    error "Version could not be determined."
    return 1
  else
    printf '%s' "${_ver}.r${_rev}.${_date}.${_hash}"
  fi
}

build() {
  cd "${_pkgname}"
  export npm_config_cache="${srcdir}/npm_cache"
  _ensure_local_nvm
  #nvm use ${_nodeversion} # Not needed; `nodejs>=${_nodeversion}` from the repositories suffices.
  export SQLCIPHER_BUNDLED=1
  export CFLAGS+=" -ffat-lto-objects"

  # printf '%s\n' " --> Running 'yarn' ..."
  # yarn --cwd element-desktop run build:64 --linux -c.linux.target=dir -c.electronDist=${_electron_dist} -c.electronVersion=${_electron_ver}
  # let's use the ready-made build script instead - otherwise, we'd have to do a lot more work to get the webapp build etc.

  printf '%s\n' " --> Running 'make pacman' ..."
  make pacman
}

package() {
  cd "${_pkgname}"

  install -dvm755 "${pkgdir}/usr/lib/${_pkgname}"

  cp -rv element-desktop/dist/linux-unpacked/resources{,.pak} "${pkgdir}"/usr/lib/${_pkgname}/
  cp -rv element-desktop/dist/linux-unpacked/locales "${pkgdir}"/usr/lib/${_pkgname}/

  # crashes (at least on wayland) when remaining packed. might be some issue with the webapp.asar location, but inconclusive
  # workaround by extracting app.asar

  install -dvm755 "${pkgdir}"/usr/lib/${_pkgname}/resources/app
  asar e "${pkgdir}"/usr/lib/${_pkgname}/resources/app.asar "${pkgdir}/usr/lib/${_pkgname}/resources/app"
  rm "${pkgdir}/usr/lib/${_pkgname}/resources/app.asar"

  # Required extras
  install -Dvm644 "${srcdir}/schildichat-desktop.desktop" -t "${pkgdir}"/usr/share/applications/
  install -Dvm755 "${srcdir}/${_pkgname}.sh" "${pkgdir}/usr/bin/${_pkgname}"

  # Icons
  install -Dvm644 element-desktop/res/img/element.png "${pkgdir}"/usr/share/icons/hicolor/scalable/apps/schildichat-desktop.png
  for i in 16 24 48 64 96 128 256 512; do
    install -Dvm644 "element-desktop/build/icons/${i}x${i}.png" "${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps/schildichat-desktop.png"
  done

  install -Dvm644 -t "${pkgdir}/usr/share/doc/${_pkgname}" git.log RELEASE.md README.md FEATURES.md

  install -Dvm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
}

# https://wiki.archlinux.org/title/Node.js_package_guidelines#Using_nvm
_ensure_local_nvm() {
    # let's be sure we are starting clean
    which nvm >/dev/null 2>&1 && nvm deactivate && nvm unload
    export NVM_DIR="${srcdir}/.nvm"

    # The init script returns 3 if version specified
    # in ./.nvrc is not (yet) installed in $NVM_DIR
    # but nvm itself still gets loaded ok
    source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
}