updated on Sun Jan 8 12:02:35 UTC 2012
[aur-mirror.git] / ggap-hg / PKGBUILD
blob902c60c888afc5012f7d88b77b130aa01c4700af
1 # Maintainer: Kevin Whitaker <eyecreate at gmail dot com>
2 # Contributor: Michal Kowalski <kowalski.michal@gmail.com>
4 pkgname=ggap-hg 
5 pkgver=701
6 pkgrel=2
7 pkgdesc="GGAP is a frontend for GAP computer algebra system."
8 arch=('i686' 'x86_64')
9 url="http://ggap.sourceforge.net/"
10 license=('GPL')
11 depends=('zlib' 'gap-math' 'qt')
12 makedepends=('mercurial' 'cmake' 'gcc')
13 provides=('ggap')
14 conflicts=('ggap')
16 _hgroot="https://bitbucket.org/muntyan"
17 _hgrepo="ggap"
19 build() {
20   cd "$srcdir"
21   msg "Connecting to Mercurial server $_hgroot"
22   if [ -d $_hgrepo ]; then
23     cd $_hgrepo
24     hg pull -u || return 1
25     msg "Finished updating the local repository!"
26   else
27     hg clone ${_hgroot} || return 1
28     msg "Initial pull complete!"
29     cd $_hgrepo
30   fi
32   ./configure
33   make
34   make install