Compare commits

..
1 Commits
Author SHA1 Message Date
sisungo aee73b0820 feat: add package graphite
Signed-off-by: sisungo <[email protected]>
2026-08-19 19:58:58 +08:00
3 changed files with 48 additions and 44 deletions
-1
View File
@@ -117,7 +117,6 @@ def _is_dev_file(ent) -> bool:
or ent.name.endswith(".la")
or ent.name.endswith(".pc")
or ent.name.endswith(".h")
or ent.name.endswith(".hpp")
or ent.name.endswith(".cmake")
or ent.name.endswith(".inc")
or ("Makefile" in ent.name)
+48
View File
@@ -0,0 +1,48 @@
import os
import lib.cpp as cpp
from lib.make import *
version("1.3.15")
description("Graphite is a \"smart font\" system developed specifically to handle the complexities of lesser-known languages of the world.")
maintainer("sisungo <[email protected]>")
source_url("https://github.com/silnrsi/graphite/releases/download/1.3.15/graphite2-1.3.15.tgz")
builddep("shortcut/c++")
builddep("shortcut/cmake")
def build():
cpp.cmake([
f"-DCMAKE_INSTALL_PREFIX={get_prefix('libgraphite-dev')}",
])
cpp.ninja()
cpp.ninja_install()
on_build(build)
def pack_dev(composer):
composer.add_dir("bin", "bin")
composer.add_dir("include", "include")
composer.add_dir("share", "share")
composer.makedir("lib")
composer.add_dir("lib/pkgconfig", "lib/pkgconfig")
for i in os.listdir("lib"):
if not os.path.isfile(f"lib/{i}"):
continue
if ".so" in i:
os.symlink(f"{get_prefix('libgraphite')}/lib/{i}", f"{composer.workdir}/bundle/lib/{i}")
else:
composer.addfile(f"lib/{i}", f"lib/{i}")
package("libgraphite")
dep("semi-libc @same-arch")
cpp.use_auto_pack(["lib"])
package("libgraphite-dev")
dep("libgraphite (same)")
dep("semi-libc-dev @same-arch")
on_pack(pack_dev)
-43
View File
@@ -1,43 +0,0 @@
import os
import shutil
from lib.make import *
from lib import cpp, arch
sdk_version = "1.4.357.0"
version(sdk_version)
description("an API and commands for processing SPIR-V modules")
maintainer("sisungo <[email protected]>")
source_url("https://github.com/KhronosGroup/SPIRV-Tools/archive/refs/tags/vulkan-sdk-1.4.357.0.tar.gz")
builddep("shortcut/cmake")
builddep("shortcut/c++")
builddep(f"spirv-headers (={sdk_version}) @{arch.get_target()}")
def build():
cpp.cmake([
f"-DSPIRV-Headers_SOURCE_DIR=/lib/{arch.get_target()}",
"-DCMAKE_CXX_FLAGS=-Wno-error=switch",
f"-DCMAKE_INSTALL_PREFIX={get_prefix('spirv-tools-dev')}",
])
cpp.ninja()
cpp.ninja_install()
try:
os.rename("lib64", "lib")
os.rename("lib32", "lib")
except:
pass
on_build(build)
package("spirv-tools")
dep("libcxx @same-arch")
cpp.use_auto_pack(["bin"])
package("spirv-tools-dev")
dep("spirv-tools (same)")
cpp.use_auto_pack(["lib", "dev"])