1 # Maintainer: Phillip Smith <fukawi2@NO-SPAM.gmail.com>
2 # http://github.com/fukawi2/aur-packages
4 ### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
5 ### Please ask support questions about this software in one of:
6 ### 1) The AUR comments; OR
7 ### 2) Upstream forums/maillist etc; OR
8 ### 3) The ArchLinux forums
9 ### I do not always know enough about the software itself, or don't have the
10 ### time to promptly respond to direct emails.
11 ### If you have found a problem with the package/PKGBUILD (as opposed to
12 ### the software) then please do email me or post an AUR comment.
17 pkgdesc="web gui for the fast distributed version control system"
18 arch=('i686' 'x86_64')
19 url="http://git-scm.com/"
21 depends=('curl' 'expat>=2.0' 'perl-error' 'perl>=5.10.0')
22 source=("http://git-core.googlecode.com/files/git-${pkgver}.tar.gz")
23 md5sums=('da2b3c226d8e99d8f66e708129f57a0a')
26 cd $srcdir/git-$pkgver
30 ./configure --prefix=/usr
36 cd $srcdir/git-$pkgver
38 make DESTDIR=$pkgdir gitwebdir=/srv/http/gitweb/ install-gitweb
41 # vim:set ts=2 sw=2 et: