You are not logged in.
Pages: 1
I've made my first PKGBUILD for googlecl http://code.google.com/p/googlecl. It looks like it works, but before I want to submit it, I would like to have some of you look at it, so here it is:
pkgname=googlecl
pkgver=0.9.5
pkgrel=1
pkgdesc="Command line tools for the Google Data APIs"
arch=('i686' 'x86_64')
url="http://code.google.com/p/googlecl/"
license=('Apache License 2.0')
groups=()
depends=('python' 'python-gdata')
makedepends=('setuptools')
install=
source=(http://googlecl.googlecode.com/files/$pkgname-$pkgver.tar.gz)
noextract=()
sha1sums=('4aec2e8401ef27791036744d41cf7c277ce9afd3')
build() {
cd $srcdir/$pkgname-$pkgver
python setup.py install --prefix=/usr --root "${pkgdir}" || return 1
}So is everything ok with this? Can I submit this?
Offline
Well, by the time I've made this PKGBUILD, an other one is already in AUR, you guys are way too fast ![]()
only real differences in my PKGBUILD is that I've used the sha1 sum from the google website (didn't find an md5 sum) and depends and makedepends is a bit different. Other things are the same, so I suppose my PKGBUILD is good.
Offline
Pages: 1