diff options
author | André Fabian Silva Delgado <andre@pc-01.localdomain> | 2012-05-11 03:06:00 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <andre@pc-01.localdomain> | 2012-05-11 03:06:00 -0300 |
commit | 597d9843a20e95d2ff30c1553b92ea441f90d3de (patch) | |
tree | 5acbc697f87b0de4ceada37ab52084b7bf3fcb75 /libre/python2-ply | |
parent | 596d607566c603f8aa4d738b6e75f5b6702f9add (diff) | |
download | abslibre-597d9843a20e95d2ff30c1553b92ea441f90d3de.tar.gz abslibre-597d9843a20e95d2ff30c1553b92ea441f90d3de.tar.bz2 abslibre-597d9843a20e95d2ff30c1553b92ea441f90d3de.zip |
python-ply: package added because it is a dependency to build iceape-libre
Diffstat (limited to 'libre/python2-ply')
-rw-r--r-- | libre/python2-ply/PKGBUILD | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libre/python2-ply/PKGBUILD b/libre/python2-ply/PKGBUILD new file mode 100644 index 000000000..fec80926a --- /dev/null +++ b/libre/python2-ply/PKGBUILD @@ -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}"; } |