blob: d7a45247a0ee1cd7f4ca1e4f541ccf482e65e2ce (
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
|
# Maintainer: Aaron Coach <aur at ezpz dot cz>
# Contributor: Nikolay Bryskin <devel.niks at gmail dot com>
# Contributor: Carlos Galindo <carlos.s.galindo (at) gmail.com>
_npmname=meshcentral
_npmver=1.0.53
pkgname=meshcentral
pkgver=1.0.53
pkgrel=1
pkgdesc="The open source, multi-platform, self-hosted, feature packed web site for remote device management"
arch=(any)
url="https://meshcentral.com/info/"
license=(Apache)
makedepends=('npm')
depends=('nodejs<18.1.0')
optdepends=('nodejs-modern-syslog: syslog support'
'nodejs-nodemailer: SMTP support'
'nodejs-passport-saml: SAML authentication support')
backup=('etc/meshcentral/config.json' 'var/lib/meshcentral')
source=("https://registry.npmjs.org/$_npmname/-/$_npmname-$_npmver.tgz"
"$_npmname.service"
"$_npmname.sysusers"
"$_npmname.tmpfiles")
noextract=("$_npmname-$_npmver.tgz")
sha256sums=('c0907c5a4248aa3b520dff23859bc09c2c303a9762bb3983eeb19b2b002b7f65'
'd53889dc58f968fa63cdbd8b245f154fc8170262908a832de674962ff2fa8b85'
'd907415d1be94568c92d3a05e70dd855f004ebed2c4170f5c2d2f36c0dfd5199'
'9968e59627f098fc5e2cbf0a0f1e11054e01ccd793d9098b5ff101c4e14f278b')
package() {
cd "$srcdir"
local _npmdir="$pkgdir/usr/lib/node_modules/"
mkdir -p "$_npmdir"
cd "$_npmdir"
npm install -g --prefix "$pkgdir/usr" $_npmname@$_npmver archiver@4.0.2 otplib@10.2.3
# Non-deterministic race in npm gives 777 permissions to random directories.
# See https://github.com/npm/npm/issues/9359 for details.
find "${pkgdir}/usr" -type d -exec chmod 755 {} +
# npm gives ownership of ALL FILES to build user
# https://bugs.archlinux.org/task/63396
chown -R root:root "${pkgdir}"
# Remove references to package and source directories
find "$pkgdir" -name package.json -print0 | xargs -r -0 sed -i '/_where/d'
# Our additional files
install -D "${srcdir}/$_npmname.service" -t "${pkgdir}/usr/lib/systemd/system"
install -D "${srcdir}/$_npmname.sysusers" "${pkgdir}/usr/lib/sysusers.d/$_npmname.conf"
install -D "${srcdir}/$_npmname.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/$_npmname.conf"
# Default configuration
install -D "${pkgdir}/usr/lib/node_modules/$_npmname/sample-config-advanced.json" "${pkgdir}/etc/$_npmname/config.json"
# Data directories
install -m 750 -d "${pkgdir}/var/lib/${_npmname}"
install -m 750 -d "${pkgdir}/var/lib/${_npmname}/{data,files}"
}
# vim:set ts=2 sw=2 et:
|