updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / quimge-git / PKGBUILD
blobe453b1b8158142949195bd7b07f2c27f9635966c
1 # Contributor: Apkawa <apkawa@gmail.com>
3 pkgname=quimge-git
4 pkgver=20110125
5 pkgrel=1
6 pkgdesc="PyQt GUI for uimge - picture uploader to different imagehostings"
7 arch=('any')
8 url="http://code.google.com/p/quimge/"
9 license=('GPL')
10 makedepends=('git')
11 depends=('python2' 'uimge-git' 'python2-qt' 'qt')
13 _gitname="quimge"
14 _gitroot="git://github.com/Apkawa/quimge.git"
15 build() {
16   cd ${srcdir}
17   msg "Connecting to $_gitroot GIT server...."
19   if [ -d ${srcdir}/$_gitname ] ; then
20   cd $_gitname && git pull origin
21   msg "The local files are updated."
22   else
23   git clone $_gitroot
24   fi
26   msg "GIT checkout done or server timeout"
27   msg "Starting make..."
29   cd ${srcdir}/${_gitname}
30   python2 setup.py build -f install -f --root $startdir/pkg --prefix=/usr || return 1