From 6a37cfb5a62905194427cc7687e00478e447f1ba Mon Sep 17 00:00:00 2001 From: Norayr Chilingarian Date: Mon, 13 Nov 2023 22:45:25 +0400 Subject: [PATCH] added strutils. --- lists.json | 9 +++++---- strutils.json | 18 ++++++++++++++++++ 2 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 strutils.json diff --git a/lists.json b/lists.json index 0386b09..6e13b4a 100644 --- a/lists.json +++ b/lists.json @@ -9,13 +9,14 @@ "path": "https://github.com/norayr/lists", "tag" : "0.1" }, + "Dependencies": + { + "strutils": "0.1" + }, "Build": { - "voc -s": "src/lDefs.Mod", - "voc -s": "src/strutils.Mod", "voc -s": "src/List.Mod", "voc -s": "src/StringList.Mod", - "voc -m": "tst/TestList.Mod", - "voc -m": "tst/TestStrutils.Mod" + "voc -m": "test/TestList.Mod", } } diff --git a/strutils.json b/strutils.json new file mode 100644 index 0000000..c3feb8e --- /dev/null +++ b/strutils.json @@ -0,0 +1,18 @@ +{ + "Package": "strutils", + "Author": "noch", + "License": "GPL-3", + "Version": "0.1", + "Remote": + { + "type": "git", + "path": "https://github.com/norayr/strutils", + "tag" : "0.1" + }, + "Build": + { + "voc -s": "src/strTypes.Mod", + "voc -s": "src/strUtils.Mod", + "voc -m": "test/testStrUtils.Mod" + } +}