mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
738 B
Bash
23 lines
738 B
Bash
# $Id: PKGBUILD 38944 2009-05-11 00:08:41Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
|
|
# Contributor: Christophe Gueret <tolgam@homegnu.net>
|
|
|
|
pkgname=python-gdata
|
|
pkgver=1.3.1
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="Python client library for Google data APIs"
|
|
url="http://code.google.com/p/gdata-python-client/"
|
|
license=('APACHE')
|
|
depends=('python>=2.6.0')
|
|
provides=('gdata_py')
|
|
replaces=('gdata_py')
|
|
conflicts=('gdata_py')
|
|
source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
|
|
md5sums=('70d60cdb43f6f49fc5a596f154f9cfbe')
|
|
|
|
build() {
|
|
cd "${srcdir}/gdata-${pkgver}"
|
|
python setup.py install --prefix=/usr --root "${pkgdir}" || return 1
|
|
}
|