mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-06 04:52:26 +00:00
can be compiled, syncs tree. needs check for bugs.
This commit is contained in:
parent
7a741b509a
commit
163102bd19
15 changed files with 264 additions and 216 deletions
|
|
@ -4,13 +4,27 @@ CONST
|
|||
vpkConfDir* = ".vipack";
|
||||
vpkConfFile* = "vipackConf.json";
|
||||
vpkTreeDir* = "vipackTree";
|
||||
treeURL* = "https://github.com/vishaps/vipackTree";
|
||||
confTypGit* = "git";
|
||||
confType* = "type";
|
||||
confTermPath* = "path";
|
||||
|
||||
confTypKey* = "type";
|
||||
confTypGitVal* = "git";
|
||||
confTypHttpVal* = "http";
|
||||
confTreeKey* = "path";
|
||||
defTreeVal* = "https://github.com/vishaps/vipackTree";
|
||||
confTreeVal* = defTreeVal;
|
||||
defTypVal* = confTypGitVal;
|
||||
|
||||
packageFileName* = "VersionFile.json";
|
||||
host* = "localhost";
|
||||
port* = "80";
|
||||
installPath* = "dependencies";
|
||||
|
||||
http* = 0;
|
||||
git* = 1;
|
||||
unkn* = -1;
|
||||
TYPE
|
||||
tree* = RECORD
|
||||
url* : ARRAY 128 OF CHAR;
|
||||
typ* : SHORTINT
|
||||
END;
|
||||
|
||||
END vpkSettings.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue