xbps/doc/xbps_binary_pkg_content.dot
Juan RP 31f821669f Add infrastructure changes to build the API documentation.
doxygen and graphviz are required. It's disabled by default, use
the BUILD_API_DOCS make(1) argument to enable it.

--HG--
extra : convert_revision : xtraeme%40gmail.com-20100123013719-pkk3a3823cx09v8l
2010-01-23 02:37:19 +01:00

19 lines
684 B
Plaintext

digraph xbps_binary_pkg_content {
graph [ranksep="0"];
edge [color=white,arrowhead="none",fontname="DejaVuSansCondensed",fontsize="12"];
node [width="4.0",shape=box,fontname="DejaVuSansCondensed",fontsize="12"];
install -> remove;
remove -> files_plist;
files_plist -> props_plist;
props_plist -> archive_entry;
archive_entry -> archive_entry2;
archive_entry2 -> archive_entry3;
install [style=filled,label="INSTALL"];
remove [style=filled,label="REMOVE"];
files_plist [label="files.plist"];
props_plist [label="props.plist"];
archive_entry [style=filled,label="/etc"];
archive_entry2 [style=filled,label="/etc/foo.conf"];
archive_entry3 [style=filled,label="..."];
}