diff options
author | Frederic Galusik <f@galusik.fr> | 2023-03-06 00:20:11 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-03-12 08:48:31 +0700 |
commit | 9deeea3ed167bec9ec8c37ce7a677436f2e4cdda (patch) | |
tree | d30b39f705a0063225c7db3d187b0540637db5b7 /network | |
parent | 50e8f0120cee6306fe8c547cf30f9fb2b2735d7d (diff) |
network/kdrive: Added (Infomaniak Drive desktop synch client)
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/kdrive/README | 6 | ||||
-rw-r--r-- | network/kdrive/doinst.sh | 9 | ||||
-rw-r--r-- | network/kdrive/kDrive.desktop | 10 | ||||
-rw-r--r-- | network/kdrive/kDrive.png | bin | 0 -> 13478 bytes | |||
-rw-r--r-- | network/kdrive/kdrive.SlackBuild | 84 | ||||
-rw-r--r-- | network/kdrive/kdrive.info | 10 | ||||
-rw-r--r-- | network/kdrive/slack-desc | 19 |
7 files changed, 138 insertions, 0 deletions
diff --git a/network/kdrive/README b/network/kdrive/README new file mode 100644 index 0000000000000..250d5e8432700 --- /dev/null +++ b/network/kdrive/README @@ -0,0 +1,6 @@ +kDrive allows you to collaborate, store and share your data securely +from your internet browser, mobile, tablet or computer. + +It is the official AppImage application from Infomaniak. + +You just need fuse to run it. diff --git a/network/kdrive/doinst.sh b/network/kdrive/doinst.sh new file mode 100644 index 0000000000000..65c7e2eeb9aa5 --- /dev/null +++ b/network/kdrive/doinst.sh @@ -0,0 +1,9 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/network/kdrive/kDrive.desktop b/network/kdrive/kDrive.desktop new file mode 100644 index 0000000000000..a6f1df8fcbc31 --- /dev/null +++ b/network/kdrive/kDrive.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=kDrive +Comment=Infomaniak Drive desktop synchronization client +Comment[fr]=Client de synchronisation de bureau Infomaniak Drive +Exec=kDrive +Icon=kDrive +Type=Application +Categories=Network;FileTransfer; +Keywords=Infomaniak Drive;syncing;file;sharing; +MimeType=application/vnd.kDrive; diff --git a/network/kdrive/kDrive.png b/network/kdrive/kDrive.png Binary files differnew file mode 100644 index 0000000000000..7d9f1c803acfd --- /dev/null +++ b/network/kdrive/kDrive.png diff --git a/network/kdrive/kdrive.SlackBuild b/network/kdrive/kdrive.SlackBuild new file mode 100644 index 0000000000000..3ec0511354a95 --- /dev/null +++ b/network/kdrive/kdrive.SlackBuild @@ -0,0 +1,84 @@ +#!/bin/bash + +# Slackware build script for kDrive + +# Copyright 2023 Frederic Galusik Bordeaux, France +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=kdrive +VERSION=${VERSION:-3.3.7.20221109} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + x86_64) ARCH=x86_64 ;; + *) echo "Package for $(uname -m) architecture is not available." ; exit 1 ;; + esac +fi + +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +mkdir -p $PRGNAM-$VERSION +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# install +install -Dm 755 $CWD/kDrive-$VERSION.AppImage $PKG/usr/bin/kDrive + +# Desktop shortcut +install -Dm 644 -o root -g root $CWD/kDrive.desktop $PKG/usr/share/applications/kDrive.desktop +install -Dm 644 -o root -g root $CWD/kDrive.png $PKG/usr/share/icons/hicolor/512x512/apps/kDrive.png + +# Copy program documentation & SlackBuild script in the documentation directory +install -Dm 644 -o root -g root $CWD/README $PKG/usr/doc/$PRGNAM-$VERSION/README +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/network/kdrive/kdrive.info b/network/kdrive/kdrive.info new file mode 100644 index 0000000000000..450028c05d660 --- /dev/null +++ b/network/kdrive/kdrive.info @@ -0,0 +1,10 @@ +PRGNAM="kdrive" +VERSION="3.3.7.20221109" +HOMEPAGE="https://kdrive.infomaniak.com" +DOWNLOAD="https://download.storage.infomaniak.com/drive/desktopclient/kDrive-3.3.7.20221109.AppImage" +MD5SUM="a00112049de074ad9d79b37dbdf7c560" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Frederic Galusik" +EMAIL="f@galusik.fr" diff --git a/network/kdrive/slack-desc b/network/kdrive/slack-desc new file mode 100644 index 0000000000000..48a667ed2b9d9 --- /dev/null +++ b/network/kdrive/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +kdrive: kdrive (Infomaniak Drive desktop synchronization client) +kdrive: +kdrive: Infomaniak kDrive desktop synchronization client +kdrive: (pre-compiled version). +kdrive: +kdrive: kDrive allows you to collaborate, store and share your data +kdrive: securely from your internet browser, mobile, tablet or computer. +kdrive: +kdrive: +kdrive: +kdrive: |