mirror of
https://gitlab.com/CinnamonSlackBuilds/csb.git
synced 2024-12-25 21:59:21 +01:00
mint-themes: Added.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
This commit is contained in:
parent
c589776fad
commit
a4c71d3e89
4 changed files with 77 additions and 0 deletions
|
@ -42,5 +42,7 @@ cinnamon-screensaver
|
|||
cinnamon-themes
|
||||
mint-y-theme
|
||||
mint-y-icons
|
||||
rubygem-sass
|
||||
mint-themes
|
||||
cinnamon
|
||||
pia-manager
|
||||
|
|
|
@ -86,6 +86,8 @@ for dir in \
|
|||
cinnamon-themes \
|
||||
mint-y-theme \
|
||||
mint-y-icons \
|
||||
rubygem-sass \
|
||||
mint-themes \
|
||||
cinnamon \
|
||||
pia-manager \
|
||||
; do
|
||||
|
|
61
mint-themes/mint-themes.SlackBuild
Normal file
61
mint-themes/mint-themes.SlackBuild
Normal file
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for mint-themes
|
||||
|
||||
# Copyright 2018 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-themes
|
||||
VERSION=${VERSION:-1.7.3}
|
||||
COMMITVER=${COMMITVER:-b94b8908b6031ecfc24ab84e08eab54eded33111}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_csb}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
wget -c https://github.com/linuxmint/mint-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
|
||||
|
||||
mkdir -p $PKG/usr/share
|
||||
rm -rf debian
|
||||
make
|
||||
mv files/usr/share/themes $PKG/usr/share
|
||||
|
||||
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-themes/slack-desc
Normal file
12
mint-themes/slack-desc
Normal file
|
@ -0,0 +1,12 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
mint-themes: mint-themes (themes for the Cinnamon desktop)
|
||||
mint-themes:
|
||||
mint-themes: mint-themes is a theme for Cinnamon desktop
|
||||
mint-themes:
|
||||
mint-themes:
|
||||
mint-themes:
|
||||
mint-themes: Project URL: https://github.com/linuxmint/mint-themes
|
||||
mint-themes:
|
||||
mint-themes:
|
||||
mint-themes:
|
||||
mint-themes:
|
Loading…
Reference in a new issue