Compare commits

..
1 Commits
Author SHA1 Message Date
sisungo 7bae4acc42 feat: add package pycparser
Signed-off-by: sisungo <[email protected]>
2026-08-17 00:20:05 +08:00
2 changed files with 22 additions and 31 deletions
-31
View File
@@ -1,31 +0,0 @@
from lib import cpp
from lib.make import *
version("0.46.4")
description("a low-level software library for pixel manipulation")
maintainer("sisungo <[email protected]>")
source_url("https://cairographics.org/releases/pixman-0.46.4.tar.xz")
builddep("shortcut/c")
builddep("shortcut/meson")
def build():
cpp.meson_setup([
f"--libdir={get_prefix('libpixman')}/lib",
f"--includedir={get_prefix('libpixman-dev')}/include",
])
cpp.meson_compile()
cpp.meson_install()
on_build(build)
package("libpixman")
dep("semi-libc @same-arch")
cpp.use_auto_pack(["lib"])
package("libpixman-dev")
dep("libpixman (same)")
cpp.use_auto_pack(["dev"])
+22
View File
@@ -0,0 +1,22 @@
from lib.make import *
from lib import python
python.version("3.0")
description("C parser in Python")
maintainer("sisungo <[email protected]>")
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()