Compare commits

..
1 Commits
Author SHA1 Message Date
sisungo 0f0ed19c8a feat: fix glib include path
Signed-off-by: sisungo <[email protected]>
2026-08-20 11:36:43 +08:00
3 changed files with 2 additions and 31 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ def _depcommon(s: str):
if ")" in s:
return s.replace(")", f", +python{PY3_VERSION})")
else:
return s.replace(".py", f".py (+python{PY3_VERSION})")
return s.replace(".py", f" (+python{PY3_VERSION})")
else:
return None
-29
View File
@@ -1,29 +0,0 @@
import os
from lib.make import *
from lib import python
python.version("1.4.1")
description("A super-fast templating language that borrows the best ideas from the existing templating languages.")
maintainer("sisungo <[email protected]>")
source_url("https://files.pythonhosted.org/packages/2a/12/b5fa2353e2754cd67fb9f83793fa48ff42c213a5da7e719869d2301f6ab8/mako-1.4.1.tar.gz")
python.builddep("$shortcut")
python.builddep("MarkupSafe.py")
def build():
python.build()
python.install()
os.chdir("lib")
while len(os.listdir(".")) == 1:
os.chdir(os.listdir(".")[0])
on_build(build)
package("Mako.py")
python.dep("python")
python.dep("MarkupSafe.py")
python.use_auto_pack()
+1 -1
View File
@@ -31,7 +31,7 @@ def build():
f"-Dgio_module_dir=/lib/{arch.get_target()}/gio/modules",
"--prefix=/",
f"--bindir={get_prefix('glib-tools')}/bin",
f"--libdir={get_prefix('glib')}/lib",
f"--libdir={get_prefix('glib-dev')}/lib",
f"--includedir={get_prefix('glib-dev')}/include",
f"--libexecdir={get_prefix('libglib')}/libexec",
f"--datadir={get_prefix('glib')}/share",