summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Marco Lavorini <sbo.mlavorini@outlook.com>2024-09-17 15:06:16 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2024-09-17 15:28:44 +0700
commite4942df8639707a98b10d13a2144e8269b755eea (patch)
treeaa3e73ebba8e6449d3fe7812e65b0f1482d66f29 /desktop
parent8cb0a42241723fc04b76287c02f7b3def2e8cefb (diff)
downloadslackbuilds-e4942df8639707a98b10d13a2144e8269b755eea.tar.gz
slackbuilds-e4942df8639707a98b10d13a2144e8269b755eea.tar.xz
desktop/SiriKali: Added (GUI front end).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/SiriKali/README12
-rw-r--r--desktop/SiriKali/SiriKali.SlackBuild110
-rw-r--r--desktop/SiriKali/SiriKali.info10
-rw-r--r--desktop/SiriKali/doinst.sh14
-rw-r--r--desktop/SiriKali/slack-desc19
5 files changed, 165 insertions, 0 deletions
diff --git a/desktop/SiriKali/README b/desktop/SiriKali/README
new file mode 100644
index 0000000000..9fe9ed2976
--- /dev/null
+++ b/desktop/SiriKali/README
@@ -0,0 +1,12 @@
+SiriKali
+
+A Qt/C++ GUI front end to cryfs,gocryptfs,securefs,ecryptfs and encfs
+
+SiriKali works on Linux, macOS and Microsoft Windows Operating Systems
+
+SiriKali is a Qt/C++ GUI application that manages ecryptfs, cryfs,
+ encfs, gocryptfs, fscrypt and securefs based encrypted folders.
+SiriKali can connect to ssh servers using sshfs.
+
+Supported Backends on Linux:
+Fscrypt, Securefs, Ecryptfs, Cryfs, Encfs, Gocryptfs and Sshfs.
diff --git a/desktop/SiriKali/SiriKali.SlackBuild b/desktop/SiriKali/SiriKali.SlackBuild
new file mode 100644
index 0000000000..020f199c11
--- /dev/null
+++ b/desktop/SiriKali/SiriKali.SlackBuild
@@ -0,0 +1,110 @@
+#!/bin/bash
+
+# Slackware build script for SiriKali
+
+# Copyright 2021-2024 Marco Lavorini - Campiglia Marittima Italy
+# 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=SiriKali
+SRCNAM=$(echo "$PRGNAM" | tr '[:upper:]' '[:lower:]')
+VERSION=${VERSION:-1.6.0}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i586 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+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}
+
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+else
+ SLKCFLAGS="-O2"
+fi
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/$PRGNAM-$VERSION.tar.?z
+
+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 {} +
+
+mkdir -p build
+cd build
+
+CFLAGS="$SLKCFLAGS" \
+CXXFLAGS="$SLKCFLAGS" \
+cmake \
+-DCMAKE_BUILD_TYPE=RELEASE \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINTERNAL_LXQT_WALLET=false \
+-DQT5=true \
+. ..
+
+make
+make install/strip DESTDIR=$PKG
+
+chmod 644 $PKG/usr/share/applications/*.desktop
+
+cd $TMP/$PRGNAM-$VERSION
+mkdir -p $PKG/usr/man/
+mv $PKG/usr/share/man/* $PKG/usr/man/
+rmdir $PKG/usr/share/man/
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a \
+ "ABOUT ME" changelog COPYING COPYRIGHT GPLv2 GPLv3 LICENSE.txt README.md \
+ $PKG/usr/doc/$PRGNAM-$VERSION
+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/desktop/SiriKali/SiriKali.info b/desktop/SiriKali/SiriKali.info
new file mode 100644
index 0000000000..c87c7bde3c
--- /dev/null
+++ b/desktop/SiriKali/SiriKali.info
@@ -0,0 +1,10 @@
+PRGNAM="SiriKali"
+VERSION="1.6.0"
+HOMEPAGE="https://mhogomchungu.github.io/sirikali/"
+DOWNLOAD="https://github.com/mhogomchungu/sirikali/releases/download/1.6.0/SiriKali-1.6.0.tar.xz"
+MD5SUM="50797aa986fe6b6ee25755abd92688a6"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="Marco Lavorini"
+EMAIL="sbo.mlavorini@outlook.com"
diff --git a/desktop/SiriKali/doinst.sh b/desktop/SiriKali/doinst.sh
new file mode 100644
index 0000000000..0fb9c8b686
--- /dev/null
+++ b/desktop/SiriKali/doinst.sh
@@ -0,0 +1,14 @@
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+fi
+
+if [ -x /usr/bin/update-mime-database ]; then
+ /usr/bin/update-mime-database usr/share/mime >/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/desktop/SiriKali/slack-desc b/desktop/SiriKali/slack-desc
new file mode 100644
index 0000000000..c0ebd5cb05
--- /dev/null
+++ b/desktop/SiriKali/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------------------------------------------------------|
+SiriKali: SiriKali (GUI front end to cryfs,gocryptfs,securefs,ecryptfs, encfs)
+SiriKali:
+SiriKali:
+SiriKali: SiriKali is a Qt/C++ GUI application that manages ecryptfs, cryfs,
+SiriKali: encfs, gocryptfs, fscrypt and securefs based encrypted folders.
+SiriKali: Sirikali can also connect to ssh servers using sshfs.
+SiriKali: Supported Backends on Linux:
+SiriKali: Fscrypt, Securefs, Ecryptfs, Cryfs, Encfs, Gocryptfs and Sshfs.
+SiriKali:
+SiriKali:
+SiriKali: https://mhogomchungu.github.io/sirikali/