# Maintainer (parabola): Luke Shumaker # Maintainer (k[community]): Stefan Husmann # Contributor: Heeru Kiyura pkgname=conkeror-git pkgver=20120228 pkgrel=1 pkgdesc="A highly programmable web browser based on Mozilla XULRunner." arch=('any') url="http://conkeror.mozdev.org/" license=('MPL' 'GPL' 'LGPL') makedepends=('git') changelog=ChangeLog _gitroot="git://repo.or.cz/conkeror.git" _gitname="conkeror" build() { cd "$srcdir" ## Git checkout if [ -d "$srcdir"/${_gitname} ] ; then msg "Git checkout: Updating existing tree" cd ${_gitname} && git pull origin master msg "Git checkout: Tree has been updated" else msg "Git checkout: Retrieving sources" git clone ${_gitroot} && cd ${_gitname} fi msg "Checkout completed" } package() { PKGEXT=${SRCEXT} PKGDEST=${SRCDEST} cp -a "${srcdir}"/* "${pkgdir}" }