updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / bugseverywhere-git / PKGBUILD
blob7603fc0b79b9a69041c77dc63da5540252035a18
1 # Contributor: Elena ``of Valhalla'' Grandi <elena.valhalla@gmail.com>
2 pkgname=bugseverywhere-git
3 pkgver=20101026
4 pkgrel=2
5 pkgdesc="A distributed bugtracker"
6 arch=('any')
7 url="http://bugseverywhere.org/be"
8 license=('GPL')
9 depends=('python2' 'python-yaml')
10 makedepends=('git' 'ed')
11 optdepends=('cherrypy: web interface')
12 provides=('bugseverywhere')
13 conflicts=('bugseverywhere' 'bugseverywhere-bzr')
14 backup=()
15 options=(!emptydirs)
16 install=
17 #source=($pkgname-$pkgver.tar.gz)
18 noextract=()
19 md5sums=() #generate with 'makepkg -g'
21 _gitroot="git://gitorious.org/be/be"
22 _gitname="be"
24 build() {
26   cd "$srcdir"
27   msg "Connecting to GIT server...."
29   if [ -d $_gitname ] ; then
30     cd $_gitname && git pull origin
31     msg "The local files are updated."
32   else
33     git clone $_gitroot $_gitname
34   fi
36   msg "GIT checkout done or server timeout"
37   msg "Starting make..."
39   rm -rf "$srcdir/$_gitname-build"
40   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
41   cd "$srcdir/$_gitname-build"
43   # Fix hardcoded values in Makefile
44   sed -i 's/^PREFIX = ${HOME}/PREFIX = \/usr/' Makefile
46   echo "31a
47 PKGDIR = $pkgdir
49 w" | ed Makefile
51   sed -i 's/^INSTALL_OPTIONS.*/INSTALL_OPTIONS = --optimize=1 --root="${PKGDIR}\/"/' Makefile 
53   # use python2 instead of python
54   sed -i 's/python /python2 /' Makefile
56   # Do not build the documentation: 
57   # the sphinx docs do not build with version 1.0.3 of sphinx and
58   # the manpage introduces problematic dependencies 
59   # besides be --help is currently more useful
60   sed -i 's/^install: build doc/install: build/' Makefile 
62   sed -i 's/^.*share\/man\/man1.*$//' setup.py 
64   # Build
65   make
66   make install
70 # vim:set ts=2 sw=2 et: