Added google-docs-fs

This commit is contained in:
Stephen 2012-04-25 21:53:09 +00:00
parent ddf405a286
commit b81c876aab
2 changed files with 34 additions and 0 deletions

16
google-docs-fs/PKGBUILD Normal file
View File

@ -0,0 +1,16 @@
pkgname=google-docs-fs
pkgver=1
pkgrel=1
pkgdesc="Mounts Google Drive or Google Docs to system"
arch=('i686' 'x86_64')
url='https://launchpad.net/google-docs-fs'
license=('GPL2')
makedepends=('bzr')
depends=('python2' 'python-fuse' 'python-gdata')
package() {
cd "$srcdir"
bzr branch lp:google-docs-fs
cd google-docs-fs
python2 setup.py install --root=$pkgdir --optimize=1 || return 1
}

18
python-gdata/PKGBUILD Normal file
View File

@ -0,0 +1,18 @@
pkgname=python-gdata
pkgver=2.0.16
pkgrel=1
arch=(any)
pkgdesc="Python client library for Google data APIs"
url="http://code.google.com/p/gdata-python-client/"
license=('APACHE')
depends=('python2')
provides=('gdata_py')
replaces=('gdata_py')
conflicts=('gdata_py')
source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
md5sums=('10e78a7f3bbccbaec266590f412e833e')
build() {
cd "${srcdir}/gdata-${pkgver}"
python2 setup.py install --prefix=/usr --root "${pkgdir}"
}