Contact/support | Changelog

PKGBUILD for pycparser

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#Contributor: lang2 <wenzhi.liang@gmail.com>

pkgname=pycparser
pkgver=2.07
pkgrel=1
pkgdesc="C parser and AST generator written in Python"
url="http://code.google.com/p/pycparser/"
depends=('python' 'python-ply')
makedepends=('python-distribute')
arch=('any')
license=('GPL')
source=(http://pycparser.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
sha1sums=('e5d0e8eb83533e438d1990fef15704f8a975d52f')

build() 
{
  cd $startdir/src/${pkgname}-${pkgver}
  python setup.py install --root=$startdir/pkg/
}