The sigrok-dumps repository differs from other components in that it's
neither autotoolized nor uses cmake. Which results in the necessity to
specify non-obvious commands to install the captures without actually
building them.
Introduce an "Installing" README section. Provide example commands for
'make install' invocations.
sigrok-dumps is in a usable state and has had official tarball releases.
+Installing
+----------
+
+Example captures need not get built or compiled, but can get installed.
+
+ $ git clone git://sigrok.org/sigrok-dumps
+ $ cd sigrok-dumps
+ $ make install
+
+Optional PREFIX or DESTDIR specs are supported as well.
+
+ $ make PREFIX=/usr install
+ $ make PREFIX=${HOME} install
+
+ $ make DESTDIR=$( pwd )/rootfs install
+
+
Contributing dumps
------------------