started adding copay shell to copay

This commit is contained in:
Gordon Hall 2014-06-06 14:23:40 -04:00
commit e7c5addfab
19 changed files with 781 additions and 3 deletions

View file

@ -0,0 +1,7 @@
[Desktop Entry]
Encoding=UTF-8
Name=Copay
Exec=/opt/Copay/copay
Icon=/opt/Copay/resources/app/node_modules/copay/android/icon.png
Type=Application
Categories=Bitcoin;

13
shell/assets/linux/install.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash
cd /tmp
# download pre-built pacakge to tmp
wget https://github.com/bitpay/copay/releases/download/v0.1.0/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-shell/master/assets/linux/Copay.desktop