blob: c9cfae939e2be32b11bf351029257a9c2041d32b (
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
|
# Maintainer (Arch): Aaditya Bagga <aaditya_gnulinux@zoho.com>
# Contributor (Arch): Maxime Gauduin <alucryd@archlinux.org>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=light-locker-consolekit
_pkgname=light-locker
pkgver=1.6.0
pkgrel=1.4
pkgdesc='A simple session locker, with consolekit support'
arch=('i686' 'x86_64' 'armv7h')
url='https://github.com/the-cavalry/light-locker'
license=('GPL2')
depends=('dbus-glib' 'gtk3' 'libxxf86misc' 'lightdm' 'libxss' 'consolekit')
makedepends=('gnome-common' 'intltool')
conflicts=('light-locker' 'light-locker-upower')
provides=('light-locker')
install='light-locker.install'
source=("https://github.com/the-cavalry/light-locker/releases/download/v${pkgver}/light-locker-${pkgver}.tar.bz2")
sha256sums=('63e0cbcc7ceb8ad695b4bbe7eb9ba5fee32f47790ccde048748d8a47edd32ad0')
build () {
cd light-locker-${pkgver}
./configure \
--prefix='/usr' \
--localstatedir='/var' \
--sysconfdir='/etc' \
--with-x \
--with-dpms-ext \
--with-mit-ext \
--with-xf86gamma-ext \
--without-systemd \
--with-console-kit \
--without-upower \
--disable-schemas-compile \
--disable-static
make
}
package() {
cd light-locker-${pkgver}
make DESTDIR="${pkgdir}" install
}
|