From 95c8c4b61a9d18a9f8ff50957c59590f9a4ad4fd Mon Sep 17 00:00:00 2001 From: laentropia Date: Tue, 26 May 2026 21:51:41 -0600 Subject: [PATCH] Initial commit, setting up only allocator --- packages/a/lae_allocator/xmake.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 packages/a/lae_allocator/xmake.lua 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)