1 #Maintainer: Gergely Imreh <imrehg(at)gmail(dot)com>
5 pkgdesc="A graphical frontend for the git directory tracker, developement version"
7 url="http://live.gnome.org/giggle"
9 depends=('git' 'libglade' 'gtksourceview2' 'perlxml' 'evolution-data-server')
10 source=("0001-giggle-view-file-depreciated-gtk_source_view_set_mar.patch")
12 install=giggle.install
16 _gitroot=git://github.com/hasselmm/giggle.git
21 msg "Connecting to GIT server...."
23 if [ -d $_gitname ] ; then
24 cd ${_gitname} && git pull origin
25 msg "The local files are updated."
28 msg "GIT checkout done or server timeout"
33 if [ -d "${_gitname}-build" ] ; then
34 msg "Removing exisiting build directory"
35 rm -r "${srcdir}/${_gitname}-build"
37 msg "Creating new clone as build directory"
38 git clone "${srcdir}/${_gitname}" "${srcdir}/${_gitname}-build"
39 cd "${srcdir}/${_gitname}-build"
41 msg "Starting make..."
45 patch -p1 < ../*.patch
47 ./configure --prefix=/usr
49 make prefix=${pkgdir}/usr install
50 # this file shouldn't be here
51 rm ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache
54 md5sums=('6e77c79e1246034ca94b7842fbe0668c')