added aur/python2-ply

This commit is contained in:
Kevin Mihelich 2013-01-11 23:49:45 +00:00
parent 8aefeaf5ba
commit c0c9110b5c

16
aur/python2-ply/PKGBUILD Normal file
View file

@ -0,0 +1,16 @@
# Contributor: Marcin "avalan" Falkiewicz <avalatron@gmail.com>
# Maintainer: C Anthony Risinger <anthony@xtfx.me>
pkgname='python2-ply'
pkgver=3.4
pkgrel=1
pkgdesc='Implementation of lex and yacc parsing tools for Python.'
arch=('any')
url='http://www.dabeaz.com/ply/'
license=('BSD')
depends=('python2')
makedepends=('python2-distribute')
source=("${url}ply-${pkgver}.tar.gz")
md5sums=('ffdc95858819347bf92d7c2acc074894')
build() { cd "ply-${pkgver}"; python2 setup.py install --root="${pkgdir}"; }