Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

desktop/numix-icon-theme-circle: Update for 24.10.22 #8973

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
cd $(dirname $0) ; CWD=$(pwd)

PRGNAM="numix-icon-theme-circle"
VERSION=${VERSION:-23.11.11}
VERSION=${VERSION:-24.10.22}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
Expand All @@ -53,6 +53,14 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .

# Fix broken relative symlinks issue
# See https://github.com/SlackBuildsOrg/slackbuilds/pull/4181 for further discussion
SIZES=( 16 22 24 )
for SIZE in ${SIZES[@]}; do
ln -sfT /usr/share/icons/Numix/$SIZE/panel Numix-Circle/$SIZE/panel
ln -sfT /usr/share/icons/Numix-Light/$SIZE/panel Numix-Circle-Light/$SIZE/panel
done

mkdir -p $PKG/usr/share/icons
cp -r Numix-Circle Numix-Circle-Light $PKG/usr/share/icons

Expand All @@ -69,9 +77,6 @@ cat $CWD/doinst.sh > $PKG/install/doinst.sh
# 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.
# there's a broken symlink from upstream, but we leave it behind
# see https://github.com/SlackBuildsOrg/slackbuilds/pull/4181 for
# discussion
cd $PKG
find . -type l \
-printf '( cd %h ; rm -rf %f )\n( cd %h ; ln -sf %l %f )\n' -delete | \
Expand Down
6 changes: 3 additions & 3 deletions desktop/numix-icon-theme-circle/numix-icon-theme-circle.info
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PRGNAM="numix-icon-theme-circle"
VERSION="23.11.11"
VERSION="24.10.22"
HOMEPAGE="https://github.com/numixproject/numix-icon-theme-circle/"
DOWNLOAD="https://github.com/numixproject/numix-icon-theme-circle/archive/23.11.11/numix-icon-theme-circle-23.11.11.tar.gz"
MD5SUM="ad245a3ccdfffc19deac9a51e39ce163"
DOWNLOAD="https://github.com/numixproject/numix-icon-theme-circle/archive/24.10.22/numix-icon-theme-circle-24.10.22.tar.gz"
MD5SUM="cef84b75c2d5e0dd9a5c1c517f1e5015"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="numix-icon-theme"
Expand Down