2014-06-06 14:23:40 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
cd /tmp
|
|
|
|
|
# download pre-built pacakge to tmp
|
2014-06-09 21:06:30 -04:00
|
|
|
wget https://github.com/bitpay/copay/releases/download/v0.1.1/Copay-linux-x64.tar.gz
|
2014-06-06 14:23:40 -04:00
|
|
|
# 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
|
2014-06-09 21:51:45 -04:00
|
|
|
ln -s /opt/Copay/Copay /usr/local/bin/copay
|
2014-06-06 14:23:40 -04:00
|
|
|
cd /usr/share/applications
|
|
|
|
|
# download desktop entry
|
2014-06-09 21:06:30 -04:00
|
|
|
wget https://raw.githubusercontent.com/bitpay/copay/master/shell/assets/linux/Copay.desktop
|