blob: 18a1cda69719dc3d34902d45bf82f20f2da58eaa (
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
|
# Maintainer: Jezer Mejía <amyuki4@gmail.com>
pkgname=web-greeter
pkgver=3.5.3
pkgrel=2
pkgdesc='A modern, visually appealing greeter for LightDM'
arch=('any')
url='https://github.com/JezerM/web-greeter'
license=('GPL3')
depends=('lightdm' 'python3' 'python-gobject' 'python-pyqt5' 'python-pyqt5-webengine' 'python-ruamel-yaml' 'python-pyinotify' 'python-xlib' 'qt5-webengine' 'gobject-introspection' 'libxcb' 'libx11')
makedepends=('rsync' 'zip' 'make' 'gcc' 'typescript' 'git')
source=("$pkgname-$pkgver::git+$url.git#tag=$pkgver" "package.patch")
sha512sums=('SKIP'
'8146f3e6047fff6ebd24cd6a2fda91322e75bef24d54cad5112e4f0daffc4f0713505f062dfb9c24255de0c2a08856f3224fe57a668247941eba73f434cad0d6')
backup=('etc/lightdm/web-greeter.yml')
conflicts=('nody-greeter')
prepare() {
cd "$pkgname-$pkgver"
patch --forward --strip=1 --input="${srcdir}/package.patch"
git submodule update --init --recursive
}
build() {
cd "$pkgname-$pkgver"
make -j1 build
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|