blob: e2b4fa29379eac2391f2a4f488e2b4d729aea83d (
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
|
# Maintainer: Lex Black <autumn-wind@web.de>
pkgname=prosody-mod-invites-register-web
pkgver=2021.12.22
pkgrel=1
_commit="15cf32e666da"
pkgdesc="Register accounts via the web using invite tokens"
arch=('any')
url="https://modules.prosody.im/mod_invites_register_web.html"
license=('MIT')
depends=('prosody' 'prosody-mod-invites-page' 'prosody-mod-password-policy')
makedepends=('mercurial')
optdepends=("prosody-mod-register-apps: Configuring list of XMPP clients")
source=("hg+https://hg.prosody.im/prosody-modules/"#revision=$_commit)
sha1sums=('SKIP')
package() {
cd "${srcdir}/prosody-modules/mod_invites_register_web"
find . -type f -name '*.lua' -exec install -Dm 644 '{}' "${pkgdir}/usr/lib/prosody/modules/{}" \;
install -Dm644 html/* -t "${pkgdir}/usr/lib/prosody/modules/html/"
find . -type f ! -name '*.lua' -exec install -Dm 644 '{}' "${pkgdir}/usr/share/doc/${pkgname}/{}" \;
rm -r "${pkgdir}/usr/share/doc/${pkgname}/html"
}
|