commit 015e05abae27d993366fadfebf4c187800b02be7 Author: Antoine Lubineau Date: Fri Nov 16 12:43:56 2012 +0100 python2-ayah: new package diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..ed7f055ef89c --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = python2-ayah + pkgdesc = Are You a Human (AYAH) Python integration library and CAPTCHA alternative + pkgver = 1.0.4 + pkgrel = 1 + url = http://www.areyouahuman.com/ + arch = any + license = MIT + depends = python2 + options = !emptydirs + source = http://portal.areyouahuman.com/downloads/are-you-a-human-1.0.4.tar.tar.gz + sha256sums = 67b8e4dd1710bba75e5331a98a91d93d9c731278eb0cabb9a72f95e1b22a8570 + +pkgname = python2-ayah + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..fc004ca19c65 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Antoine Lubineau + +pkgname=python2-ayah +pkgver=1.0.4 +pkgrel=1 +pkgdesc="Are You a Human (AYAH) Python integration library and CAPTCHA alternative" +arch=('any') +url="http://www.areyouahuman.com/" +license=('MIT') +depends=('python2') +makedepends=() +options=(!emptydirs) +source=("http://portal.areyouahuman.com/downloads/are-you-a-human-$pkgver.tar.tar.gz") +sha256sums=('67b8e4dd1710bba75e5331a98a91d93d9c731278eb0cabb9a72f95e1b22a8570') + +package() { + cd "$srcdir/are-you-a-human-$pkgver" + python2 setup.py install --root="$pkgdir/" --optimize=1 +} + +# vim:set ts=2 sw=2 et: