diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-28 00:16:12 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-28 01:13:26 (EDT) |
commit | 11ea456edc857c0dab0518df935f4339757b4ff6 (patch) | |
tree | 6b566f1893c63f6b2e661baba5e40159b94f3d11 /bin | |
parent | 70618d8bdca57a5503a388eba21c068a61df5b4e (diff) |
Add graph label
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/depsdot | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/depsdot b/bin/depsdot index 411af57..37d495d 100755 --- a/bin/depsdot +++ b/bin/depsdot @@ -77,7 +77,9 @@ sub main ' * Generated ' . strftime('on %Y-%m-%d at %H:%M:%S %Z', localtime()) . "\n */\n\n" . "digraph deps {\n\toverlap = false;\n\tsplines = true;\n" . - "\tlayout = \"neato\";\n\n\t/* Source packages */\n"); + "\tlayout = \"neato\";\n" . + "\tlabel = \"ProteanOS Source Package Dependencies\";\n" . + "\n\t/* Source packages */\n"); foreach my $src (sort(@src_pkgs)) { my $attr = ''; if (not defined($non_leaf_src_pkgs{$src})) { |