diff options
author | Murat D. Kadirov <banderols@gmail.com> | 2013-04-24 07:14:16 -0400 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2013-04-28 12:30:12 -0300 |
commit | 30613cc59d7943d30b05ab09f08e3ae38191ce92 (patch) | |
tree | 1d38e1c57ee85a21a1d8cf86b2760335c2d19d66 /network/dropbox/dropbox.SlackBuild | |
parent | a83e897e5d068e652cfeb087afa39b3e3b2a72f8 (diff) | |
download | slackbuilds-30613cc59d7943d30b05ab09f08e3ae38191ce92.tar.gz |
network/dropbox: Updated for version 2.0.5.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/dropbox/dropbox.SlackBuild')
-rw-r--r-- | network/dropbox/dropbox.SlackBuild | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/network/dropbox/dropbox.SlackBuild b/network/dropbox/dropbox.SlackBuild index 29e22c3507..b021f0fc2b 100644 --- a/network/dropbox/dropbox.SlackBuild +++ b/network/dropbox/dropbox.SlackBuild @@ -1,8 +1,7 @@ #!/bin/sh -# Slackware build script for Dropbox - # Copyright 2010 Murat D. Kadirov <banderols@gmail.com> +# # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,15 +21,26 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# Changelog: +# 09/Apr/2013 * Murat D. Kadirov <banderols@gmail.com> is MIA. +# * Updated by Amit Ugol <amit.ugol@gmail.com>. +# * Updated to version 2.0.5 +# * Changed the slac-desc to be up-to-date with the online info. +# * Changed the terms file to be up-to-date with the online info. +# * Removed deletion of libstdc++.so.6 as it is not there anyway. +# * Since 2.0, dropbox seems to update itself and I find it working +# rather well. +# * Minor changes to this changelog. # 18/Dec/2011 * Updated to 1.2.49 -# Bug fixed with bad symlink to /usr/bin/dropboxd. Thanks to Dominik Drobek. +# * Bug fixed with bad symlink to /usr/bin/dropboxd. Thanks to +# Dominik Drobek. PRGNAM=dropbox PACKNAM=dropbox-lnx -VERSION=${VERSION:-1.2.49} +VERSION=${VERSION:-2.0.5} BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} +TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -63,7 +73,6 @@ find . \ mkdir $PKG/opt mkdir -p $PKG/usr/bin cp -R ../.$PRGNAM-dist $PKG/opt/dropbox -rm $PKG/opt/dropbox/libstdc++.so.6 ln -s /opt/dropbox/dropboxd $PKG/usr/bin/dropboxd install -D -m 644 $CWD/dropbox.desktop $PKG/usr/share/applications/dropbox.desktop install -D -m 644 $CWD/dropbox.png $PKG/usr/share/pixmaps/dropbox.png |