summaryrefslogtreecommitdiff
path: root/community/light-locker
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-04-12 03:59:45 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-04-12 03:59:45 +0000
commitd8679f0250762892ab1e1a6d71badc2e9d42a526 (patch)
tree2c5893ffb5a88532e043973210221d10ce07f808 /community/light-locker
parent10cc2a54e50ad4aeffd7152937670c8673a096f9 (diff)
Sat Apr 12 03:57:05 UTC 2014
Diffstat (limited to 'community/light-locker')
-rw-r--r--community/light-locker/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/light-locker/PKGBUILD b/community/light-locker/PKGBUILD
new file mode 100644
index 000000000..d749f3f6b
--- /dev/null
+++ b/community/light-locker/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 109028 2014-04-09 12:12:14Z alucryd $
+# Maintainer: Maxime Gauduin <alucryd@gmail.com>
+
+pkgname=light-locker
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='A simple session locker'
+arch=('i686' 'x86_64')
+url='https://github.com/the-cavalry/light-locker'
+license=('GPL2')
+depends=('dbus-glib' 'gtk3' 'libxxf86misc' 'lightdm' 'libxss')
+makedepends=('gnome-common' 'intltool')
+source=("https://github.com/the-cavalry/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2")
+sha256sums=('560f20390b24513d5bf7b691bac5d745b76eb21ac3bccd877b73cb7f6d137ec3')
+
+build () {
+ cd ${pkgname}-${pkgver}
+
+ ./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' --disable-{schemas-compile,static} --with-{mit-ext,systemd,xf86gamma-ext,x} --without-{console-kit,upower}
+ make
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et: