2 # Contributor: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
5 pkgname=${_pkgname}-git
8 pkgdesc="A simple calendar application with reminders for Xfce"
11 url="http://www.xfce.org"
13 depends=('hicolor-icon-theme' 'xfce4-panel-devel' 'libnotify')
14 makedepends=('git' 'intltool' 'pkgconfig' 'xfce4-dev-tools-devel')
17 install=${_pkgname}.install
19 _gitroot="git://git.xfce.org/apps/$_pkgname"
25 msg "Getting sources..."
27 if [ -d "$srcdir/$_gitname" ] ; then
28 cd $_gitname && git pull origin
29 msg "The local files are updated."
34 msg "GIT checkout done or server timeout"
35 msg "Starting build..."
40 ./autogen.sh --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
41 --localstatedir=/var --disable-static --enable-debug=minimum \
42 --enable-maintainer-mode || return 1
44 make DESTDIR=${startdir}/pkg install || return 1