1 # Maintainer: Robert Chmielowiec <robert@chmielowiec.net>
6 pkgdesc="A small, lightweight addressbook that uses libebook, part of EDS (Git version)"
7 url="http://pimlico-project.org/contacts.html"
9 depends=('evolution-data-server')
10 makedepends=('git' 'intltool')
11 arch=('i686' 'x86_64')
12 install="contacts.install"
16 _gitroot=git://git.gnome.org/contacts
21 if [ -d ${_gitname} ]; then
22 cd ${_gitname} && git pull origin
23 msg "The local files are updated."
28 msg "GIT checkout done or server timeout"
29 msg "Starting make..."
30 ./autogen.sh --prefix=/usr --sysconfdir=/etc --enable-gconf --enable-gnome-vfs
32 make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install || return 1
34 install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
35 gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${_pkgname}.schemas" ${pkgdir}/etc/gconf/schemas/*.schemas || return 1