summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author M.Dinslage <daedra1980@gmail.com>2022-04-01 23:56:00 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2022-04-02 18:19:21 +0700
commitb1f2a94243b893adfba8b26dfdf9fb834553a34d (patch)
treefe6ad13faf38bee4287e61f3f66417be49453cfa /desktop
parent1d543bd49876966a5b745d6e05508b410ba21bc1 (diff)
downloadslackbuilds-b1f2a94243b893adfba8b26dfdf9fb834553a34d.tar.gz
slackbuilds-b1f2a94243b893adfba8b26dfdf9fb834553a34d.tar.xz
desktop/mint-y-icons: Added (Mint Linux default icon theme)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/mint-y-icons/README2
-rw-r--r--desktop/mint-y-icons/doinst.sh5
-rw-r--r--desktop/mint-y-icons/mint-y-icons.SlackBuild77
-rw-r--r--desktop/mint-y-icons/mint-y-icons.info10
-rw-r--r--desktop/mint-y-icons/slack-desc19
5 files changed, 113 insertions, 0 deletions
diff --git a/desktop/mint-y-icons/README b/desktop/mint-y-icons/README
new file mode 100644
index 0000000000..e2de18e36c
--- /dev/null
+++ b/desktop/mint-y-icons/README
@@ -0,0 +1,2 @@
+Icon theme for Linux Mint. Based on mintified versions of Clearlooks
+Revamp, Elementary and Faenza.
diff --git a/desktop/mint-y-icons/doinst.sh b/desktop/mint-y-icons/doinst.sh
new file mode 100644
index 0000000000..4110f5514d
--- /dev/null
+++ b/desktop/mint-y-icons/doinst.sh
@@ -0,0 +1,5 @@
+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/mint-y-icons/mint-y-icons.SlackBuild b/desktop/mint-y-icons/mint-y-icons.SlackBuild
new file mode 100644
index 0000000000..a38846a827
--- /dev/null
+++ b/desktop/mint-y-icons/mint-y-icons.SlackBuild
@@ -0,0 +1,77 @@
+#!/bin/bash
+
+# Slackware build script for mint-y-icons
+
+# Copyright 2017 Matt Dinslage (daedra1980@gmail.com), Springfield, MO, USA
+# 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="mint-y-icons"
+VERSION=${VERSION:-1.5.9}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
+
+ARCH=noarch
+
+# 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/usr/doc/$PRGNAM-$VERSION $OUTPUT
+cd $PKG
+# tar directly into $PKG
+tar xvf $CWD/$PRGNAM"_"$VERSION.tar.xz --strip-components=1 \
+ $PRGNAM/usr/
+
+# install docs & license
+(
+ cd $PKG/usr/doc/$PRGNAM-$VERSION
+ tar xvf $CWD/$PRGNAM"_"$VERSION.tar.xz --strip-components=2 \
+ $PRGNAM/debian/{changelog,copyright}
+)
+
+chown -R root:root .
+find -L . \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 -o -perm 700 \) -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 {} \;
+
+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/mint-y-icons/mint-y-icons.info b/desktop/mint-y-icons/mint-y-icons.info
new file mode 100644
index 0000000000..194616279f
--- /dev/null
+++ b/desktop/mint-y-icons/mint-y-icons.info
@@ -0,0 +1,10 @@
+PRGNAM="mint-y-icons"
+VERSION="1.5.9"
+HOMEPAGE="https://github.com/linuxmint/mint-y-icons"
+DOWNLOAD="http://packages.linuxmint.com/pool/main/m/mint-y-icons/mint-y-icons_1.5.9.tar.xz"
+MD5SUM="ec4e41fb4c23dc6de878fa261c461cc9"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="M.Dinslage"
+EMAIL="daedra1980@gmail.com"
diff --git a/desktop/mint-y-icons/slack-desc b/desktop/mint-y-icons/slack-desc
new file mode 100644
index 0000000000..504b00b9ae
--- /dev/null
+++ b/desktop/mint-y-icons/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 ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+mint-y-icons: mint-y-icons (Mint Linux default icon theme)
+mint-y-icons:
+mint-y-icons: Icon theme for Linux Mint. Based on mintified versions of Clearlooks
+mint-y-icons: Revamp, Elementary and Faenza.
+mint-y-icons:
+mint-y-icons:
+mint-y-icons:
+mint-y-icons:
+mint-y-icons:
+mint-y-icons:
+mint-y-icons: