updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / python-distpnd-git / PKGBUILD
blobbef2eee161ab01a9fc7f1822df71aa0a9788b22b
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # See http://wiki.archlinux.org/index.php/Python_Package_Guidelines for more
7 # information on Python packaging.
9 # Maintainer: Your Name <youremail@domain.com>
10 pkgname=python-distpnd-git
11 pkgver=20110214
12 pkgrel=1
13 pkgdesc="distutils commands to create PND files for the Pandora handheld."
14 arch=('any')
15 url="https://github.com/Tempel/distPND"
16 license=('MIT')
17 depends=('python2')
18 makedepends=('git')
19 optdepends=('squashfs-tools: build standard compressed PNDs' 
20             'cdrkit: build iso file PNDs')
21 provides=('python-distpnd')
22 conflicts=('python-distpnd')
23 replaces=()
24 backup=()
25 options=(!emptydirs)
26 install=
27 source=()
28 md5sums=()
30 _gitroot="https://github.com/Tempel/distPND.git"
31 _gitname="distPND"
33 package() {
34   cd "$srcdir"
35   msg "Connecting to GIT server...."
37   if [ -d $_gitname ] ; then
38     cd $_gitname && git pull origin
39     msg "The local files are updated."
40   else
41     git clone --bare $_gitroot $_gitname
42   fi
44   msg "GIT checkout done or server timeout"
45   msg "Starting make..."
47   rm -rf "$srcdir/$_gitname-build"
48   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
49   cd "$srcdir/$_gitname-build"
50   git checkout origin/develop
52   python2 setup.py install --root=$pkgdir/ --optimize=1
54   install -D -m644 "$srcdir/$_gitname-build/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
57 # vim:set ts=2 sw=2 et: