Skip to content

Commit 9c733aa

Browse files
slackalaxywillysr
authored andcommitted
desktop/LX-Colors-Revival: added back + new maintainer
Signed-off-by: Willy Sudiarto Raharjo <[email protected]>
1 parent eb85a97 commit 9c733aa

File tree

5 files changed

+132
-0
lines changed

5 files changed

+132
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
#!/bin/sh
2+
#
3+
# Slackware build script for LX-Colors-Revival.
4+
#
5+
# Copyright 2021 Petar Petrov [email protected]
6+
# Copyright 2016-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil.
7+
# All rights reserved.
8+
#
9+
# Redistribution and use of this script, with or without modification, is
10+
# permitted provided that the following conditions are met:
11+
#
12+
# 1. Redistributions of this script must retain the above copyright
13+
# notice, this list of conditions and the following disclaimer.
14+
#
15+
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
16+
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
17+
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
18+
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19+
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20+
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
21+
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
22+
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23+
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
24+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25+
26+
PRGNAM=LX-Colors-Revival
27+
VERSION=${VERSION:-20160602}
28+
BUILD=${BUILD:-2}
29+
TAG=${TAG:-_SBo}
30+
31+
ARCH=noarch
32+
33+
CWD=$(pwd)
34+
TMP=${TMP:-/tmp/SBo}
35+
PKG=$TMP/package-$PRGNAM
36+
OUTPUT=${OUTPUT:-/tmp}
37+
38+
set -e
39+
40+
rm -rf $PKG
41+
mkdir -p $TMP $PKG $OUTPUT
42+
cd $TMP
43+
rm -rf $PRGNAM-$VERSION
44+
mkdir $PRGNAM-$VERSION
45+
for file in $CWD/*.tar.gz; do tar xvf $file -C $PRGNAM-$VERSION; done
46+
cd $PRGNAM-$VERSION
47+
chown -R root:root .
48+
49+
mkdir -p $PKG/usr/share/{icons,themes,wallpapers}
50+
mv gnome-* $PKG/usr/share/icons/
51+
mv Arc-Colors Mobile* $PKG/usr/share/wallpapers/
52+
mv * $PKG/usr/share/themes/
53+
54+
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
55+
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
56+
57+
mkdir -p $PKG/install
58+
cat $CWD/slack-desc > $PKG/install/slack-desc
59+
cat $CWD/doinst.sh > $PKG/install/doinst.sh
60+
61+
cd $PKG
62+
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
PRGNAM="LX-Colors-Revival"
2+
VERSION="20160602"
3+
HOMEPAGE="https://www.box-look.org/p/1107240/"
4+
DOWNLOAD="https://sourceforge.net/projects/sboppetrov/files/LX/Mobile-Colors.tar.gz \
5+
https://sourceforge.net/projects/sboppetrov/files/LX/Arc-Colors-Revival.tar.gz \
6+
https://sourceforge.net/projects/sboppetrov/files/LX/GNOME-Colors-Revival.tar.gz \
7+
https://sourceforge.net/projects/sboppetrov/files/LX/LX-Pitchdark-Series.tar.gz \
8+
https://sourceforge.net/projects/sboppetrov/files/LX/LX-NeoShiki-Series.tar.gz \
9+
https://sourceforge.net/projects/sboppetrov/files/LX/LX-Mixed-Series.tar.gz \
10+
https://sourceforge.net/projects/sboppetrov/files/LX/LX-Light-Series.tar.gz"
11+
MD5SUM="4b7e35c8853edfbec3102726749ca122 \
12+
ec776752c599d4416ace517d14af8581 \
13+
474bd9a6328cc1ffa8c596a6d0b92267 \
14+
fb1d4e94d3d9fd13502e7691d8f9847b \
15+
55338e79e841855adead3cd9797dbe77 \
16+
eb2a53642f0a0a05ad3c04bcf5201839 \
17+
28cb0781053ad397aa4ee0c4b062cae8"
18+
DOWNLOAD_x86_64=""
19+
MD5SUM_x86_64=""
20+
REQUIRES="murrine gtk-engines"
21+
MAINTAINER="Petar Petrov"
22+

desktop/LX-Colors-Revival/README

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
LX-Colors-Revival (GTK2/GTK3/Openbox themes)
2+
3+
This is an update to the LX-Colors theme series and now compatible
4+
with GTK 3.20. This is an attempt to keep the legendary Shiki-Colors
5+
theme series alive, in four variations, such as Light, Mixed (light,
6+
but with dark menus), NeoShiki (the LXDE/Openbox successor to
7+
Shiki-Colors), and Pitchdark (all-dark variations).
8+
9+
New features in this edition includes:
10+
11+
* Two new color schemes: Carbonite (dark gray) and Tribute
12+
(light gray, kinda gold-ish)
13+
* An update to the GNOME-Colors icon theme series that now includes
14+
the new aforementioned colors, created by Kylie McClain of Somasis.com.
15+
Please give her some love and thank her for her hard work.
16+
* In addition the classic Arc-Colors wallpapers, I've also resized
17+
them for smartphones and have called the smartphone versions of those
18+
wallpapers just simply "Mobile-Colors"
19+
20+
* This package is compatible with "old" LX-Colors-themes.

desktop/LX-Colors-Revival/doinst.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
if [ -x /usr/bin/update-desktop-database ]; then
2+
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
3+
fi
4+
5+
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
6+
if [ -x /usr/bin/gtk-update-icon-cache ]; then
7+
/usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
8+
fi
9+
fi

desktop/LX-Colors-Revival/slack-desc

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# HOW TO EDIT THIS FILE:
2+
# The "handy ruler" below makes it easier to edit a package description.
3+
# Line up the first '|' above the ':' following the base package name, and
4+
# the '|' on the right side marks the last column you can put a character in.
5+
# You must make exactly 11 lines for the formatting to be correct. It's also
6+
# customary to leave one space after the ':' except on otherwise blank lines.
7+
8+
|-----handy-ruler------------------------------------------------------|
9+
LX-Colors-Revival: LX-Colors-Revival (GTK2/GTK3/Openbox themes)
10+
LX-Colors-Revival:
11+
LX-Colors-Revival: This is an update to the LX-Colors theme series and now compatible
12+
LX-Colors-Revival: with GTK 3.20. This is an attempt to keep the legendary Shiki-Colors
13+
LX-Colors-Revival: theme series alive, in four variations, such as Light, Mixed (light,
14+
LX-Colors-Revival: but with dark menus), NeoShiki (the LXDE/Openbox successor to
15+
LX-Colors-Revival: Shiki-Colors), and Pitchdark (all-dark variations).
16+
LX-Colors-Revival:
17+
LX-Colors-Revival: Home page: https://www.box-look.org/p/1107240/
18+
LX-Colors-Revival:
19+
LX-Colors-Revival:

0 commit comments

Comments
 (0)