diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-29 15:23:24 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-29 17:17:42 -0500 |
commit | b3c9b66d9f68ebdee73c2566cddd15972c4ec75a (patch) | |
tree | 3e5ca159f4bf3eaec2a4c475b2d466c77d609fe7 /development/geany-plugins | |
parent | 1e2625ddab3f3f16c3dc66a60637303c8898537e (diff) |
development/geany-plugins: Fixed (Handle icon files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/geany-plugins')
-rw-r--r-- | development/geany-plugins/doinst.sh | 6 | ||||
-rw-r--r-- | development/geany-plugins/geany-plugins.SlackBuild | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/development/geany-plugins/doinst.sh b/development/geany-plugins/doinst.sh new file mode 100644 index 000000000000..30eb690936b5 --- /dev/null +++ b/development/geany-plugins/doinst.sh @@ -0,0 +1,6 @@ +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 + diff --git a/development/geany-plugins/geany-plugins.SlackBuild b/development/geany-plugins/geany-plugins.SlackBuild index 281f846edd2d..1ea48a624f82 100644 --- a/development/geany-plugins/geany-plugins.SlackBuild +++ b/development/geany-plugins/geany-plugins.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=geany-plugins VERSION=${VERSION:-1.22} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -93,6 +93,7 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |