blob: 619b22d579da37e7852de6c0c940811c0f51cc83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Contributor: Jon Bergli Heier <snakebite@jvnv.net>
pkgname=pyanidb-git
pkgver=20100911
pkgrel=1
pkgdesc="PyAniDB is a client for AniDB's UDP API."
arch=('any')
url="http://redmine.jvnv.net/projects/pyanidb/wiki"
license=('GPL')
depends=('python')
optdepends=('pyxattr')
makedepends=('git')
provides=('pyanidb')
_gitroot="git://git.jvnv.net/pyanidb"
_gitname="pyanidb"
build() {
cd "$srcdir"
msg "Connecting to GIT server...."
if [ -d $_gitname ] ; then
cd $_gitname && git pull origin
msg "The local files are updated."
else
git clone $_gitroot
fi
msg "GIT checkout done or server timeout"
msg "Starting make..."
rm -rf "$srcdir/$_gitname-build"
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
cd "$srcdir/$_gitname-build"
python setup.py install --root=${pkgdir} || return 1
}
|