diff options
Diffstat (limited to 'community/lxdm/PKGBUILD')
-rw-r--r-- | community/lxdm/PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/community/lxdm/PKGBUILD b/community/lxdm/PKGBUILD index 373ca457b..96bf3daa4 100644 --- a/community/lxdm/PKGBUILD +++ b/community/lxdm/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 60015 2011-12-03 08:31:47Z bpiotrowski $ -# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com> +# $Id: PKGBUILD 67372 2012-03-10 19:36:34Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski # Contributor: AndyRTR <andyrtr@archlinux.org> # Contributor: kiefer <jorgelmadrid@gmail.com> pkgname=lxdm pkgver=0.4.1 -pkgrel=7 +pkgrel=8 pkgdesc="Lightweight Display Manager (part of LXDE)" arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/lxdm/" @@ -17,7 +17,7 @@ install=${pkgname}.install backup=('etc/lxdm/lxdm.conf' 'etc/pam.d/lxdm' 'etc/lxdm/Xsession' 'etc/lxdm/PreLogin' 'etc/lxdm/LoginReady' 'etc/lxdm/PostLogin' 'etc/lxdm/PostLogout' 'etc/lxdm/PreReboot' 'etc/lxdm/PreShutdown') -source=("http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz" +source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz lxdm.patch lxdm-conf.patch lxdm-pam.patch Xsession.patch lxdm-daemon) md5sums=('8da1cfc2be6dc9217c85a7cf51e1e821' 'baed9055e8825a5511712bc095197519' @@ -31,9 +31,9 @@ build() { ./configure --sysconfdir=/etc --prefix=/usr --libexecdir=/usr/lib/lxdm make - patch -Np0 < ../lxdm.patch - patch -Np0 < ../lxdm-conf.patch - patch -Np0 < ../Xsession.patch + patch -Np0 -i $srcdir/lxdm.patch + patch -Np0 -i $srcdir/lxdm-conf.patch + patch -Np0 -i $srcdir/Xsession.patch } |