diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/lxsession/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/lxsession/PKGBUILD')
-rw-r--r-- | community/lxsession/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/community/lxsession/PKGBUILD b/community/lxsession/PKGBUILD new file mode 100644 index 000000000..5e4d01536 --- /dev/null +++ b/community/lxsession/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 95018 2013-08-03 12:52:23Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> +# Contributor: Angel Velasquez <angvp@archlinux.org> +# Contributor: Juergen Hoetzel <juergen@archlinux.org> + +pkgname=lxsession +pkgver=0.4.6.1 +pkgrel=1 +epoch=1 +pkgdesc='Lightweight X11 session manager' +arch=('i686' 'x86_64') +url="http://lxde.org/" +license=('GPL2') +groups=('lxde') +depends=('gtk2' 'dbus') +makedepends=('pkgconfig' 'intltool') +replaces=('lxde-settings-daemon' 'lxsession-lite') +conflicts=('lxsession-lite' 'lxde-settings-daemon') +source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz + lxsession-0.4.6.1-logind-support.patch) +md5sums=('e456b64c5ab3652a4dec661ec706dc6e' + 'd99fb337cba343306df71c85034def3b') + +prepare() { + cd $pkgname-$pkgver + patch -Np1 -i ../lxsession-0.4.6.1-logind-support.patch +} + +build() { + cd $pkgname-$pkgver + ./configure --sysconfdir=/etc --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} |