commit 95c8c4b61a9d18a9f8ff50957c59590f9a4ad4fd Author: laentropia Date: Tue May 26 21:51:41 2026 -0600 Initial commit, setting up only allocator diff --git a/packages/a/lae_allocator/xmake.lua b/packages/a/lae_allocator/xmake.lua new file mode 100644 index 0000000..26809a2 --- /dev/null +++ b/packages/a/lae_allocator/xmake.lua @@ -0,0 +1,15 @@ +package("lae_allocator") + +set_kind("library") + +set_description("Allocator abstraction library") + +set_homepage("https://laentropia-homelab.tail7368da.ts.net/laentropia/Allocator") + +add_urls("https://laentropia-homelab.tail7368da.ts.net/laentropia/Allocator.git") + +add_versions("1.0.0", "278973a006") + +on_install(function(package) + import("package.tools.xmake").install(package) +end)