mirror of
https://gitlab.com/CinnamonSlackBuilds/csb.git
synced 2024-12-25 21:59:21 +01:00
mint-cursor-themes: Added.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
This commit is contained in:
parent
b77b3e1374
commit
83943b1d28
4 changed files with 72 additions and 0 deletions
|
@ -36,5 +36,6 @@ psutil
|
||||||
cinnamon-screensaver
|
cinnamon-screensaver
|
||||||
mint-y-icons
|
mint-y-icons
|
||||||
mint-themes
|
mint-themes
|
||||||
|
mint-cursor-themes
|
||||||
cinnamon
|
cinnamon
|
||||||
pia-manager
|
pia-manager
|
||||||
|
|
|
@ -79,6 +79,7 @@ for dir in \
|
||||||
cinnamon-screensaver \
|
cinnamon-screensaver \
|
||||||
mint-y-icons \
|
mint-y-icons \
|
||||||
mint-themes \
|
mint-themes \
|
||||||
|
mint-cursor-themes \
|
||||||
cinnamon \
|
cinnamon \
|
||||||
pia-manager \
|
pia-manager \
|
||||||
; do
|
; do
|
||||||
|
|
58
mint-cursor-themes/mint-cursor-themes.SlackBuild
Normal file
58
mint-cursor-themes/mint-cursor-themes.SlackBuild
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for mint-cursor-themes
|
||||||
|
|
||||||
|
# Copyright 2022 Willy Sudiarto Raharjo <willysr@slackware-id.org>
|
||||||
|
# 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.
|
||||||
|
|
||||||
|
PRGNAM=mint-cursor-themes
|
||||||
|
VERSION=${VERSION:-1.0.0}
|
||||||
|
COMMITVER=${COMMITVER:-aa6bb767831ac43d1768c2e639de713a4a1eba8d}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_csb}
|
||||||
|
|
||||||
|
ARCH=noarch
|
||||||
|
|
||||||
|
wget -c https://github.com/linuxmint/mint-cursor-themes/archive/$COMMITVER.zip
|
||||||
|
|
||||||
|
CWD=$(pwd)
|
||||||
|
TMP=${TMP:-/tmp/csb}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$COMMITVER
|
||||||
|
unzip $CWD/$COMMITVER.zip
|
||||||
|
cd $PRGNAM-$COMMITVER
|
||||||
|
|
||||||
|
cp -rf usr $PKG
|
||||||
|
|
||||||
|
mkdir -p $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
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
|
12
mint-cursor-themes/slack-desc
Normal file
12
mint-cursor-themes/slack-desc
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
|-----handy-ruler------------------------------------------------------|
|
||||||
|
mint-cursor-themes: mint-cursor-themes (cursor themes for the Cinnamon desktop)
|
||||||
|
mint-cursor-themes:
|
||||||
|
mint-cursor-themes: mint-cursor-themes is a cursor theme for Cinnamon desktop
|
||||||
|
mint-cursor-themes:
|
||||||
|
mint-cursor-themes:
|
||||||
|
mint-cursor-themes:
|
||||||
|
mint-cursor-themes: Project URL: https://github.com/linuxmint/mint-cursor-themes
|
||||||
|
mint-cursor-themes:
|
||||||
|
mint-cursor-themes:
|
||||||
|
mint-cursor-themes:
|
||||||
|
mint-cursor-themes:
|
Loading…
Reference in a new issue