updated on Wed Jan 18 20:10:41 UTC 2012
[aur-mirror.git] / lxsession-git / PKGBUILD
blob60ef232e1e5aa086c0cdfe8c457905cdd8415f03
1 # myswiat - mariusz
3 pkgname=lxsession-git
4 pkgver=20110926
5 pkgrel=1
6 url="http://lxde.net/"
7 pkgdesc="lxsession LXDE"
8 arch=('i686' 'x86_64')
9 license=('GPL')
10 depends=('gtk2' 'gtk3' 'glib2' 'menu-cache')
11 makedepends=('git' 'intltool' 'pkgconfig' 'autoconf' 'perl' 'gtk-doc')
12 provides=('lxsession')
13 conflicts=('lxsession')
14 replaces=()
16 _gitroot="git://pcmanfm.git.sourceforge.net/gitroot/lxde/lxsession"
17 _gitname="lxsession"
20 build() {
21   cd "$srcdir"
22   msg "Connecting to GIT server...."
24   if [ -d "$_gitname" ] ; then
25     cd "$_gitname" && git pull origin
26     msg "The local files are updated."
27   else
28     git clone "$_gitroot"
29   fi
31   msg "GIT checkout done or server timeout"
32   msg "Starting make..."
34 cd "${srcdir}/${_gitname}"
35 ./autogen.sh
36 ./configure --prefix="/usr" --sysconfdir="/etc" --enable-man --enable-gtk3
37 make
38 make DESTDIR=${pkgdir} install