23 lines
486 B
Python
23 lines
486 B
Python
from lib.make import *
|
|
from lib import python
|
|
|
|
|
|
python.version("1.0.1")
|
|
description("A library for installing Python wheels.")
|
|
maintainer("sisungo <[email protected]>")
|
|
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()
|