copay/shell/assets/linux/install.sh

14 lines
466 B
Bash
Executable File

#!/bin/bash
cd /tmp
# download pre-built pacakge to tmp
wget https://github.com/bitpay/copay/releases/download/v0.1.1/Copay-linux-x64.tar.gz
# extract archive
tar -xvf /tmp/Copay-linux-x64.tar.gz
# move the package to opt
mv /tmp/Copay /opt/Copay
# symlink `copay` to user path
ln -s /opt/Copay/Copay /usr/local/bin/copay
cd /usr/share/applications
# download desktop entry
wget https://raw.githubusercontent.com/bitpay/copay/master/shell/assets/linux/Copay.desktop