updated on Sun Jan 22 08:00:21 UTC 2012
[aur-mirror.git] / gitweb / PKGBUILD
blobd18f910bbb48bf46cb22436c6d8d25ab4792159c
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.
14 pkgname=gitweb
15 pkgver=1.7.7.3
16 pkgrel=1
17 pkgdesc="web gui for the fast distributed version control system"
18 arch=('i686' 'x86_64')
19 url="http://git-scm.com/"
20 license=('GPL2')
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')
25 build() {
26   cd $srcdir/git-$pkgver
28   make configure
30   ./configure --prefix=/usr
32   make gitweb
35 package() {
36   cd $srcdir/git-$pkgver
38   make DESTDIR=$pkgdir gitwebdir=/srv/http/gitweb/ install-gitweb
41 # vim:set ts=2 sw=2 et: