aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-07-05 10:39:20 -0400
committerKen Moore <ken@ixsystems.com>2017-07-05 10:39:20 -0400
commit2bdb706ecaa7277f5e2120ab4675e2d7a185ac4b (patch)
tree280729b18f7ff98981e8c0827f9199208db2ead5 /src-qt5/desktop-utils
parentAdd a README.md file for the "core-utils" subproject (diff)
downloadlumina-2bdb706ecaa7277f5e2120ab4675e2d7a185ac4b.tar.gz
lumina-2bdb706ecaa7277f5e2120ab4675e2d7a185ac4b.tar.bz2
lumina-2bdb706ecaa7277f5e2120ab4675e2d7a185ac4b.zip
Add a README.md to the lumina-archiver subproject
Diffstat (limited to 'src-qt5/desktop-utils')
-rw-r--r--src-qt5/desktop-utils/lumina-archiver/README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/README.md b/src-qt5/desktop-utils/lumina-archiver/README.md
new file mode 100644
index 00000000..6f393af7
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-archiver/README.md
@@ -0,0 +1,25 @@
+## Archive Manager for the Lumina Desktop
+
+This is a graphical archive manager based around the `tar` utility, which also provides limited support to copying USB images to a USB device via the `dd`utility.
+
+Binaries:
+ * `lumina-archiver`: (lumina-config directory) Graphical utility for configuring the desktop session
+
+### Library Dependencies
+
+1. Qt 5.2+ (specific modules listed below)
+ * concurrent
+ * core
+ * gui
+ * network
+ * multimedia
+ * svg
+ * widgets
+2. Other Libraries
+ * libc
+
+### Runtime Utilities
+
+1. Required utilities
+ * `tar`: Used for the backend archive control system
+ * `dd`: Used to copy an image file ("*.img") to a USB device
bgstack15