]> sigrok.org Git - sigrok-util.git/commitdiff
sigrok-native-appimage: Support building a sigrok-cli AppImage.
authorUwe Hermann <redacted>
Sat, 7 Apr 2018 17:36:04 +0000 (19:36 +0200)
committerUwe Hermann <redacted>
Sat, 7 Apr 2018 17:38:43 +0000 (19:38 +0200)
cross-compile/appimage/README
cross-compile/appimage/sigrok-native-appimage

index 9e3d714fc7f2c84903d323b9c16b5ccc21dee820..f3c83d0c1b055e69199bd1b09de4c4ca9e83b976 100644 (file)
@@ -2,7 +2,7 @@
 README
 -------------------------------------------------------------------------------
 
-This is a small script for bundling PulseView and its dependencies
+This is a small script for bundling PulseView/sigrok-cli and its dependencies
 for Linux systems as an AppImage.
 
 AppImage is a bundle format for Linux applications that allows the user to 
@@ -37,9 +37,15 @@ can run on as many different systems as possible.
 Building
 --------
 
+For PulseView:
+
  $ ./sigrok-native-appimage
 
-Per default it will put the AppImage in:
+For sigrok-cli:
+
+ $ ./sigrok-native-appimage sigrok-cli
+
+Per default the script will put the AppImages in:
 
  ./out/*.AppImage
 
index d4dc1914ae63bb4917a553d18392a63e2abd340c..cc27c5901ade5eedf594d7eea55a69934ae6a2f2 100755 (executable)
@@ -1,11 +1,11 @@
 #!/bin/bash
 ##
 ## Copyright (C) 2016 Simon Peter
-## Copyright (C) 2017 Uwe Hermann <uwe@hermann-uwe.de>
+## Copyright (C) 2017-2018 Uwe Hermann <uwe@hermann-uwe.de>
 ## This file is licensed under the terms of the MIT license.
 ##
 
-# Bundle PulseView and its dependencies as an AppImage for x86_64/i386 Linux.
+# Bundle PulseView/sigrok-cli (and deps) as an AppImage for x86_64/i386 Linux.
 # Note: This assumes the full sigrok stack has been installed into $PREFIX.
 
 PREFIX=$HOME/sr
@@ -21,7 +21,11 @@ PYVER=3.4
 # You usually don't have to change anything below this line
 ########################################################################
 
-APP=PulseView
+if [ "x$1" = "xsigrok-cli" ]; then
+       APP=sigrok-cli
+else
+       APP=PulseView
+fi
 LOWERAPP=${APP,,} 
 
 export STATIC_FILES=`pwd`/contrib
@@ -41,16 +45,28 @@ cd ./$APP
 
 cd $APP.AppDir/
 
-cp $PREFIX/bin/pulseview usr/bin/
+cp $PREFIX/bin/$LOWERAPP usr/bin/
 chmod a+x usr/bin/*
 cp $PREFIX/lib/lib*.so* usr/lib/
 cp -r $PREFIX/share/libsigrokdecode usr/share/
 cp -r $PREFIX/share/sigrok-firmware usr/share/
-cp -r $PREFIX/share/applications usr/share/
+mkdir -p usr/share/applications
+cp $PREFIX/share/applications/org.sigrok.$APP.desktop usr/share/applications
 cp -r $PREFIX/share/icons usr/share/
 cp -r $PREFIX/share/metainfo usr/share/
 cp -r $PREFIX/share/mime usr/share/
 
+# Drop unneeded stuff.
+if [ "x$1" = "xsigrok-cli" ]; then
+       rm -f usr/lib/libsigc*
+       rm -f usr/lib/libglibmm*
+       rm -f usr/lib/libsigrokcxx*
+       rm -f usr/share/icons/hicolor/*/apps/pulseview.*
+       rm -f usr/share/metainfo/org.sigrok.PulseView.appdata.xml
+else
+       rm -f usr/share/icons/hicolor/scalable/apps/sigrok-cli.svg
+fi
+
 # Reduce binary size
 strip usr/bin/*
 strip usr/lib/*
@@ -65,8 +81,8 @@ cp $APPIMAGEKIT_OUTDIR/AppRun .
 # Copy desktop and icon file to AppDir for AppRun to pick them up
 ########################################################################
 
-cp usr/share/applications/*.desktop .
-cp usr/share/icons/hicolor/48x48/apps/pulseview.png .
+cp $PREFIX/share/applications/org.sigrok.$APP.desktop .
+cp $PREFIX/share/icons/hicolor/scalable/apps/$LOWERAPP.svg .
 
 ########################################################################
 # Copy in the dependencies that cannot be assumed to be available
@@ -75,19 +91,21 @@ cp usr/share/icons/hicolor/48x48/apps/pulseview.png .
 
 copy_deps
 
-# Get all Qt5 plugins (won't be copied automatically).
-QT5PLUGINS=/usr/lib/$ARCH-linux-gnu/qt5/plugins # Host (+ AppRun) path.
-mkdir -p .$QT5PLUGINS
-cp -r $QT5PLUGINS/accessible .$QT5PLUGINS
-cp -r $QT5PLUGINS/generic .$QT5PLUGINS
-cp -r $QT5PLUGINS/iconengines .$QT5PLUGINS
-cp -r $QT5PLUGINS/imageformats .$QT5PLUGINS
-cp -r $QT5PLUGINS/platforminputcontexts .$QT5PLUGINS
-cp -r $QT5PLUGINS/platforms .$QT5PLUGINS
-
-# Get some additional dependencies of the Qt5 plugins.
-ldd .$QT5PLUGINS/platforms/libqxcb.so | grep "=>" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./usr/lib || true
-ldd .$QT5PLUGINS/imageformats/libqsvg.so | grep "=>" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./usr/lib || true
+if [ "x$1" != "xsigrok-cli" ]; then
+       # Get all Qt5 plugins (won't be copied automatically).
+       QT5PLUGINS=/usr/lib/$ARCH-linux-gnu/qt5/plugins # Host (+ AppRun) path.
+       mkdir -p .$QT5PLUGINS
+       cp -r $QT5PLUGINS/accessible .$QT5PLUGINS
+       cp -r $QT5PLUGINS/generic .$QT5PLUGINS
+       cp -r $QT5PLUGINS/iconengines .$QT5PLUGINS
+       cp -r $QT5PLUGINS/imageformats .$QT5PLUGINS
+       cp -r $QT5PLUGINS/platforminputcontexts .$QT5PLUGINS
+       cp -r $QT5PLUGINS/platforms .$QT5PLUGINS
+       
+       # Get some additional dependencies of the Qt5 plugins.
+       ldd .$QT5PLUGINS/platforms/libqxcb.so | grep "=>" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./usr/lib || true
+       ldd .$QT5PLUGINS/imageformats/libqsvg.so | grep "=>" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./usr/lib || true
+fi
 
 # Python 3
 cp /usr/lib/$ARCH-linux-gnu/libpython$PYVER* ./usr/lib