Commit 527cc1ad by devttys0

Removed pyqtgraph from deps.sh

parent 9181304d
#!/bin/bash
# Easy installer script for installing binwalk extraction utilities on Debian/RedHat systems.
# Normally invoked via 'make deps'.
SUDO=$(which sudo)
SUMOUNT="$1 $2"
function pyqtgraph
{
# Get and install pyqtgraph
wget -O - http://www.pyqtgraph.org/downloads/pyqtgraph-0.9.8.tar.gz | tar -zxv
if [ -e pyqtgraph-0.9.8 ]
then
cd pyqtgraph-0.9.8 && $SUDO python ./setup.py install && cd - && $SUDO rm -rf pyqtgraph-0.9.8
fi
}
function fmk
{
# Get and build the firmware mod kit
......@@ -155,9 +144,6 @@ case $DISTRO in
exit 1
esac
# Get and install pyqtgraph
pyqtgraph
# Get and build the firmware mod kit
fmk
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment