summaryrefslogtreecommitdiffstats
path: root/desktop/awoken-icon-theme/awoken-icon-theme.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/awoken-icon-theme/awoken-icon-theme.SlackBuild')
-rw-r--r--desktop/awoken-icon-theme/awoken-icon-theme.SlackBuild13
1 files changed, 12 insertions, 1 deletions
diff --git a/desktop/awoken-icon-theme/awoken-icon-theme.SlackBuild b/desktop/awoken-icon-theme/awoken-icon-theme.SlackBuild
index 53f36eed23..c9b1d2a7bd 100644
--- a/desktop/awoken-icon-theme/awoken-icon-theme.SlackBuild
+++ b/desktop/awoken-icon-theme/awoken-icon-theme.SlackBuild
@@ -2,7 +2,7 @@
#
# Slackware build script for awoken-icon-theme
#
-# Copyright 2015-2017 Edinaldo P. Silva, Rio de Janeiro, Brazil.
+# Copyright 2015-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -60,4 +60,15 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
+# 20200407 bkw: makepkg's symlink search and doinst.sh creation doesn't
+# scale well. This makes the build complete much faster, and create an
+# identical doinst.sh.
+find . -type l \
+ -printf '( cd %h ; rm -rf %f )\n( cd %h ; ln -sf %l %f )\n' -delete | \
+ sed 's,cd \./,cd ,' >> $PKG/install/doinst.sh
+
+# The above doesn't handle spaces in filenames. This isn't a general-purpose
+# solution, but special-case for this build:
+sed -i 's,Google ,Google\\ ,g' $PKG/install/doinst.sh
+
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}