From 4f442f0ae9150a726e4b910236c58e988a3091f5 Mon Sep 17 00:00:00 2001 From: Norayr Chilingarian Date: Sun, 1 Dec 2024 03:46:23 +0400 Subject: [PATCH] etiquette and related json files. --- etiquette.json | 16 ++++++++++++++++ unixFileSystem.json | 17 +++++++++++++++++ xattr.json | 16 ++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 etiquette.json create mode 100644 unixFileSystem.json create mode 100644 xattr.json diff --git a/etiquette.json b/etiquette.json new file mode 100644 index 0000000..dd2ef09 --- /dev/null +++ b/etiquette.json @@ -0,0 +1,16 @@ +{ + "Package": "etiquette", + "Author": "noch", + "License": "GPL-3", + "Version": "0.1", + "Remote": + { + "type": "git", + "path": "https://github.com/norayr/etiquette", + "tag" : "0.1" + }, + "Build": + [ + {"command": "voc -m", "file": "src/etiquette.Mod"} + ] +} diff --git a/unixFileSystem.json b/unixFileSystem.json new file mode 100644 index 0000000..6d613e2 --- /dev/null +++ b/unixFileSystem.json @@ -0,0 +1,17 @@ +{ + "Package": "unixFileSystem", + "Author": "noch", + "License": "GPL-3", + "Version": "0.1", + "Remote": + { + "type": "git", + "path": "https://github.com/norayr/unixFileSystem", + "tag" : "0.1" + }, + "Build": + [ + {"command": "voc -s", "file": "src/UnixFS.Mod"}, + {"command": "voc -m", "file": "test/TestUnixFS.Mod"} + ] +} diff --git a/xattr.json b/xattr.json new file mode 100644 index 0000000..a694675 --- /dev/null +++ b/xattr.json @@ -0,0 +1,16 @@ +{ + "Package": "xattr", + "Author": "noch", + "License": "GPL-3", + "Version": "0.1", + "Remote": + { + "type": "git", + "path": "https://github.com/norayr/xattr", + "tag" : "0.1" + }, + "Build": + [ + {"command": "voc -s", "file": "src/xattr.Mod"} + ] +}