desktop/numix-icon-theme-circle: Updated for version 23.10.09.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Edinaldo P. Silva 2023-10-22 08:54:41 +07:00 committed by Willy Sudiarto Raharjo
parent 3a619562e0
commit 9e94f1807e
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 15 additions and 11 deletions

View file

@ -4,6 +4,7 @@
#
# Copyright 2015-2018 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# Copyright 2020-2022 Isaac Yu <isaacyu1@isaacyu1.com>
# Copyright 2023 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -26,7 +27,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM="numix-icon-theme-circle"
VERSION=${VERSION:-20220711}
VERSION=${VERSION:-23.10.09}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -45,16 +46,14 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
SRCVER=${SRCVER:-22.07.11}
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$SRCVER
tar xvf $CWD/${PRGNAM}-${SRCVER}.tar.gz
cd $PRGNAM-$SRCVER
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
mkdir -p $PKG/usr/share/icons
@ -68,6 +67,11 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
# create doinst.sh. Normally makepkg does this, but it's
# *painfully* slow and we have over 17,000 symlinks to process. It takes
# 15 minutes for makepkg to run on my test system. The find command
# below runs in 1.5 seconds and creates an identical doinst.sh. This is
# a 1000x speedup.
cd $PKG
find . -type l \
-printf '( cd %h ; rm -rf %f )\n( cd %h ; ln -sf %l %f )\n' -delete | \

View file

@ -1,10 +1,10 @@
PRGNAM="numix-icon-theme-circle"
VERSION="20220711"
VERSION="23.10.09"
HOMEPAGE="https://github.com/numixproject/numix-icon-theme-circle/"
DOWNLOAD="https://github.com/numixproject/numix-icon-theme-circle/archive/22.07.11/numix-icon-theme-circle-22.07.11.tar.gz"
MD5SUM="19cbebb11b8f46bf4729749c1a1c81fb"
DOWNLOAD="https://github.com/numixproject/numix-icon-theme-circle/archive/23.10.09/numix-icon-theme-circle-23.10.09.tar.gz"
MD5SUM="4032d1f1e2a18119a3c7817474545621"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="numix-icon-theme"
MAINTAINER="orphaned - no maintainer"
EMAIL="nobody@nowhere"
MAINTAINER="Edinaldo P. Silva"
EMAIL="edps.mundognu@gmail.com"