Skip to content

Commit 2c18626

Browse files
committed
CI/Linux: Add libvmx to appimage
1 parent 7812152 commit 2c18626

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

data/scripts/Linux-AppImage/create-appimage.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,15 @@ if [ -f "$(echo $APPPREFIX/lib/libva.so.* | cut -d\ -f 1)" ]; then
201201
done
202202
fi
203203

204+
# ship libvmx drivers if have libomt
205+
if [ -f "$APPPREFIX/lib/libomt.so" ]; then
206+
LIBVMX_PATH=/usr/local/lib/libvmx.so
207+
if [ -n "$LIBVMX_PATH" ]; then
208+
cp "$LIBVMX_PATH" $APPPREFIX/lib/
209+
break
210+
fi
211+
fi
212+
204213
cp -r "$srcdir/data/scripts/Linux-AppImage/AppRun" "$srcdir/data/scripts/Linux-AppImage/scripts" "$srcdir/data/ultragrid.png" $APPDIR
205214
cp "$srcdir/data/uv-qt.desktop" $APPDIR/cz.cesnet.ultragrid.desktop
206215
appimageupdatetool=$(command -v appimageupdatetool-x86_64.AppImage || command -v ./appimageupdatetool || true)

0 commit comments

Comments
 (0)