blob: c62834b8b5ef1cfb32d25f224f524da0a1dae305 (
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
|
pkgname=goobook-git
pkgver=1.6.r3.gb4ba7f8
pkgrel=1
pkgdesc="Search your google contacts from the command-line or mutt"
url="http://goobook.googlecode.com/"
arch=('any')
license=('GPL')
conflicts=('goobook')
provides=('goobook')
depends=('python2' 'python2-gdata>=2.0.7' 'python2-simplejson')
makedepends=('git' 'python2-setuptools')
install=goobook.install
source=('goobook::git://gitorious.org/goobook/mainline.git')
md5sums=('SKIP')
pkgver() {
cd goobook
git describe --tags --long | sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
package() {
cd goobook
sed -ie '58s/distribute/setuptools/' setup.py
python2 setup.py install --root="$pkgdir" --optimize=1
}
|