Compare commits

..
1 Commits
Author SHA1 Message Date
sisungo a56e20e5ef feat: add package libxml2
Signed-off-by: sisungo <[email protected]>
2026-08-17 00:35:27 +08:00
2 changed files with 31 additions and 22 deletions
-22
View File
@@ -1,22 +0,0 @@
from lib.make import *
from lib import python
python.version("6.0.3")
description("YAML parser and emitter for Python")
maintainer("sisungo <[email protected]>")
source_url("https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz")
python.builddep("$shortcut")
def build():
python.build()
python.install()
on_build(build)
package("PyYAML.py")
python.dep("python")
python.use_auto_pack()
+31
View File
@@ -0,0 +1,31 @@
from lib import arch, cpp
from lib.make import *
version("2.15.3")
description("an XML toolkit implemented in C, originally developed for the GNOME Project")
maintainer("sisungo <[email protected]>")
source_url("https://download.gnome.org/sources/libxml2/2.15/libxml2-2.15.3.tar.xz")
builddep("shortcut/autotools")
builddep("shortcut/cmake")
def build():
cpp.configure([
f"--libdir={get_prefix('libxml2')}/lib",
f"--includedir={get_prefix('libxml2-dev')}/include",
])
cpp.make()
cpp.make_install()
on_build(build)
package("libxml2")
dep("semi-libc @same-arch")
cpp.use_auto_pack(["lib"])
package("libxml2-dev")
dep("semi-libc @same-arch")
cpp.use_auto_pack(["dev"])