summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerhard Sittig <gerhard.sittig@gmx.net>2022-10-02 14:14:11 +0200
committerGerhard Sittig <gerhard.sittig@gmx.net>2022-10-02 14:32:27 +0200
commit82263c0bbb90329a952d5580d2fafdbadd9ed304 (patch)
tree6ba03e2fa891242a7b287c8266075ab1024693f2
parent7cfd7aa928edc23f02a28ffa1a5065e2a0209c08 (diff)
downloadsigrok-dumps-master.tar.gz
sigrok-dumps-master.zip
README: discuss installation of example capturesHEADmaster
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.
-rw-r--r--README17
1 files changed, 17 insertions, 0 deletions
diff --git a/README b/README
index b802721..724a738 100644
--- a/README
+++ b/README
@@ -16,6 +16,23 @@ Status
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
------------------