diff --git a/packages/installer-py/pkgbuild.py b/packages/installer-py/pkgbuild.py new file mode 100644 index 0000000..b35587a --- /dev/null +++ b/packages/installer-py/pkgbuild.py @@ -0,0 +1,22 @@ +from lib.make import * +from lib import python + + +python.version("1.0.1") +description("A library for installing Python wheels.") +maintainer("sisungo ") +source_url("https://files.pythonhosted.org/packages/06/fe/b9f481cf0cc867958a21338baa900357b7b7d86cac9b025948049d77923c/installer-1.0.1.tar.gz") + +python.builddep("$shortcut") + + +def build(): + python.build() + python.install() + +on_build(build) + + +package("installer.py") +python.dep("python") +python.use_auto_pack() diff --git a/x.py b/x.py index 3484849..f178d2f 100644 --- a/x.py +++ b/x.py @@ -118,6 +118,7 @@ def cmd_build_package(package: str): "name": pkgname, "version": pkgver, "arch": pkgarch, + "description": pkginfo[lib.make._key_description], "dependencies": pkginfo[lib.make._key_dependencies], "provides": pkginfo[lib.make._key_provides], "recommendations": pkginfo[lib.make._key_recommendations],