diff --git a/packages/pycparser/pkgbuild.py b/packages/pycparser/pkgbuild.py new file mode 100644 index 0000000..d6b166c --- /dev/null +++ b/packages/pycparser/pkgbuild.py @@ -0,0 +1,22 @@ +from lib.make import * +from lib import python + + +python.version("3.0") +description("C parser in Python") +maintainer("sisungo ") +source_url("https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz") + +python.builddep("$shortcut") + + +def build(): + python.build() + python.install() + +on_build(build) + + +package("pycparser.py") +python.dep("python") +python.use_auto_pack()