mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-06 04:52:26 +00:00
simplified some modules by adding others.
This commit is contained in:
parent
dd6093e056
commit
dff47dc004
4 changed files with 159 additions and 2 deletions
|
|
@ -1,9 +1,13 @@
|
|||
MODULE vpkInstaller;
|
||||
IMPORT StringList, vpkResolver;
|
||||
IMPORT StringList, vpkResolver, vpkdepTree, vpkDot;
|
||||
|
||||
PROCEDURE install*(VAR unit: ARRAY OF CHAR);
|
||||
VAR
|
||||
tree: vpkdepTree.TdepTree;
|
||||
lst: StringList.TStringList;
|
||||
BEGIN
|
||||
vpkResolver.resolve(unit);
|
||||
tree := vpkResolver.resolve(unit);
|
||||
lst := vpkDot.tree2dot(tree);
|
||||
|
||||
END install;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue