25 lines
555 B
Python
25 lines
555 B
Python
from lib.make import *
|
|
from lib import python
|
|
|
|
|
|
python.version("1.5.0")
|
|
description("A simple, correct Python build frontend")
|
|
maintainer("sisungo <[email protected]>")
|
|
source_url("https://files.pythonhosted.org/packages/78/e0/df5e171f685f82f37b12e1f208064e24244911079d7b767447d1af7e0d70/build-1.5.0.tar.gz")
|
|
|
|
python.builddep("$shortcut")
|
|
python.builddep("packaging.py (>=25.0)")
|
|
|
|
|
|
def build():
|
|
python.build()
|
|
python.install()
|
|
|
|
on_build(build)
|
|
|
|
|
|
package("build.py")
|
|
python.dep("python")
|
|
python.dep("packaging.py (>=25.0)")
|
|
python.use_auto_pack()
|