Skip to content

Instantly share code, notes, and snippets.

@starrify
Created April 2, 2014 12:05
Show Gist options
  • Save starrify/9932797 to your computer and use it in GitHub Desktop.
Save starrify/9932797 to your computer and use it in GitHub Desktop.
A working PKGBUILD for python2-recaptcha-client. See https://aur.archlinux.org/packages/python2-recaptcha-client/
# Contributor: Peter Baldwin <bald_pete@hotmail.com>
# Contributor: Eduardo Robles Elvira <edulix AT gmail DOT com>
# Contributor: Pengyu CHEN <cpy.prefers.you[at]gmail.com>
pkgname=python2-recaptcha-client
pkgver=1.0.6
pkgrel=1
pkgdesc="Provides a CAPTCHA for Python using the reCAPTCHA service"
license="MIT"
url="http://pypi.python.org/pypi/recaptcha-client"
source=(http://pypi.python.org/packages/source/r/recaptcha-client/recaptcha-client-$pkgver.tar.gz)
md5sums=('74228180f7e1fb76c4d7089160b0d919')
arch=('i686' 'x86_64')
depends=('python2' 'python2-distribute')
package()
{
cd recaptcha-client-${pkgver}
python2 setup.py install --root=${pkgdir}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment