aboutsummaryrefslogtreecommitdiff
path: root/development/cream
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2022-04-05 15:03:16 -0400
committerB. Watson <yalhcru@gmail.com>2022-04-05 15:03:16 -0400
commitb83041c697fb18d2be12e3b2c363cc00b7cf6505 (patch)
treef1ddf6d87e109c98d42f89331533cd58d72a0bf8 /development/cream
parent38e2d66ff8cee0e7e48bd0d27987f41c168b65f5 (diff)
development/cream: Fix icons, .desktop, doinst.sh.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'development/cream')
-rw-r--r--development/cream/cream.SlackBuild31
-rw-r--r--development/cream/doinst.sh6
2 files changed, 31 insertions, 6 deletions
diff --git a/development/cream/cream.SlackBuild b/development/cream/cream.SlackBuild
index 8fedf5b5f3a7..5c0e8da05e34 100644
--- a/development/cream/cream.SlackBuild
+++ b/development/cream/cream.SlackBuild
@@ -22,18 +22,21 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# 20220405 bkw: Modified by SlackBuilds.org, BUILD=2:
+# - put icons in right place.
+# - update icon cache in doinst.sh.
+# - fix .desktop permissions.
+# - make .desktop validate.
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=cream
VERSION=${VERSION:-0.43}
ARCH=noarch
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
-# 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
@@ -54,9 +57,9 @@ 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 \
+ -exec chmod 755 {} \+ -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ -exec chmod 644 {} \+
# Set VIMRUNTIME here, as the INSTALL.sh script has some problems with
# redirection of output
@@ -68,6 +71,22 @@ sed -i "s/-d \$VIMRUNTIME/! -d \$VIMRUNTIME/g" INSTALL.sh
DESTDIR=$PKG \
sh INSTALL.sh /usr
+# 20220405 bkw: put the icons in the right place.
+I=$PKG/usr/share/icons
+mkdir -p $I/hicolor/{48x48,scalable}/apps
+mv $I/$PRGNAM.png $I/hicolor/48x48/apps
+mv $I/$PRGNAM.svg $I/hicolor/scalable/apps
+
+# 20220405 bkw: fix .desktop permission and contents.
+D=$PKG/usr/share/applications/$PRGNAM.desktop
+chmod 0644 $D
+sed -i -e '/^Encoding/d' \
+ -e '/^MapNotify/d' \
+ -e '/^Terminal/s,0,false,' \
+ -e 's,^XClassHintResName,X-&,' \
+ -e 's,Application;,,' \
+ $D
+
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
docs/* docs-html/ \
diff --git a/development/cream/doinst.sh b/development/cream/doinst.sh
index 5fb28930db0b..3e5691a052b5 100644
--- a/development/cream/doinst.sh
+++ b/development/cream/doinst.sh
@@ -1,3 +1,9 @@
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/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 usr/share/icons/hicolor >/dev/null 2>&1
+ fi
+fi