Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- mkdir src
- echo "Downloading SDR# ..."
- curl http://sdrsharp.com/downloads/sdr-nightly.zip -o src/sdr-nightly.zip
- echo "Downloading SDR#'s RTLSDR Plugin ..."
- curl http://sdrsharp.com/downloads/sdr-nightly-rtlsdr.zip -o src/sdr-nightly-rtlsdr.zip
- echo "Downloading RTLSDR Driver ..."
- curl http://sdr.osmocom.org/trac/raw-attachment/wiki/rtl-sdr/RelWithDebInfo.zip -o src/RelWithDebInfo.zip
- echo "Downloading Zadig ..."
- curl http://sdrsharp.com/downloads/zadig.zip -o src/zadig.zip
- mkdir tmp
- unzip -q -o src/sdr-nightly.zip -d sdrsharp
- unzip -q -o src/sdr-nightly-rtlsdr.zip -d tmp
- mv tmp/SDRSharp.RTLSDR.dll sdrsharp
- mv tmp/msvcr100.dll sdrsharp
- mv tmp/libusb-1.0.dll sdrsharp
- mv tmp/libusb0.dll sdrsharp
- mv -f tmp/config/SDRSharp.exe.config sdrsharp
- unzip -q -o src/RelWithDebInfo.zip -d tmp
- mv tmp/rtl-sdr-release/x32/rtlsdr.dll sdrsharp
- unzip -q -o src/zadig.zip -d tmp
- mv tmp/zadig.exe sdrsharp
- rm -rf src
- rm -rf tmp
- echo "Done"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement