]> sigrok.org Git - sigrok-build.git/commitdiff
Add sigrok-dumps to the dependency build script for MXE
authorFrank Stettner <redacted>
Sun, 26 Mar 2023 15:43:14 +0000 (17:43 +0200)
committerFrank Stettner <redacted>
Sun, 26 Mar 2023 16:09:15 +0000 (18:09 +0200)
.github/workflows/pulseview_mxe.yml
ci/sigrok-mxe-build-dependencies.sh

index 6a3acb946052a6cbb14682f53cc99647c633a25f..b0e9616a59eeeb7e1c3046b6c5f312018838d01a 100644 (file)
@@ -21,6 +21,8 @@ env:
   LIBSIGROKDECODE_REPO: "git://sigrok.org/libsigrokdecode"
   # Git URL for the sigrok-firmware dependency
   SIGROK_FIRMWARE_REPO: "git://sigrok.org/sigrok-firmware"
+  # Git URL for the sigrok-dumps dependency
+  SIGROK_DUMPS_REPO: "git://sigrok.org/sigrok-dumps"
   # Build type for PulseView (Debug, Release, RelWithDebInfo, MinSizeRel)
   BUILD_TYPE: "Release"
   # Misc commands
index a38f3d6e7817c67cc15758902e0b1b4f3ba60619..c867ae330e706df6dbeceed1a82e7fb7cece5fd5 100755 (executable)
@@ -118,3 +118,9 @@ cd sigrok-firmware
 make $PARALLEL $V
 make install $V
 cd ..
+
+# sigrok-dumps
+$GIT_CLONE $SIGROK_DUMPS_REPO sigrok-dumps
+cd sigrok-dumps
+make PREFIX="$INSTALL_DIR" install
+cd ..