diff --git a/MATE-1.22-CHANGES.TXT b/MATE-1.22-CHANGES.TXT index 01eee2a..182f778 100644 --- a/MATE-1.22-CHANGES.TXT +++ b/MATE-1.22-CHANGES.TXT @@ -3,5 +3,4 @@ New Packages in MATE 1.22: Renamed Packages in MATE 1.22: Packages removed in MATE 1.22: -caja-actions mate-icon-theme-faenza diff --git a/extra/caja-actions/caja-actions.SlackBuild b/extra/caja-actions/caja-actions.SlackBuild new file mode 100644 index 0000000..d5466c0 --- /dev/null +++ b/extra/caja-actions/caja-actions.SlackBuild @@ -0,0 +1,103 @@ +#!/bin/sh + +# Slackware build script for caja-actions + +# Copyright 2016 Leonardo Citrolo +# Copyright 2016-2018 Willy Sudiarto Raharjo +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=caja-actions +VERSION=${VERSION:-1.8.3} +BUILD=${BUILD:-1} +TAG=${TAG:-_msb} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +wget -c https://github.com/raveit65/$PRGNAM/archive/v$VERSION/$PRGNAM-$VERSION.tar.gz + +CWD=$(pwd) +TMP=${TMP:-/tmp/msb} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +elif [ "$ARCH" = "arm" ]; then + SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard" + LIBDIRSUFFIX="" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +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 \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +./autogen.sh \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --enable-gtk-doc-html=no \ + --enable-gtk-doc-pdf=no \ + --with-gtk=3 \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG pkgdocdir=/usr/doc/$PRGNAM-$VERSION + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +# Documentation has already been copied to $PKG/usr/doc/$PRGNAM-$VERSION +# by 'make install' +rm $PKG/usr/doc/$PRGNAM-$VERSION/ChangeLog +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:-txz} \ No newline at end of file diff --git a/extra/caja-actions/doinst.sh b/extra/caja-actions/doinst.sh new file mode 100644 index 0000000..2aa41d6 --- /dev/null +++ b/extra/caja-actions/doinst.sh @@ -0,0 +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 -f usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi \ No newline at end of file diff --git a/extra/caja-actions/slack-desc b/extra/caja-actions/slack-desc new file mode 100644 index 0000000..5d28740 --- /dev/null +++ b/extra/caja-actions/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler------------------------------------------------------| +caja-actions: caja-actions (Caja file manager extension) +caja-actions: +caja-actions: Caja-actions is an extension for Caja file manager which allows the +caja-actions: user to add arbitrary program to be launched through the Caja file +caja-actions: manager popup menu of selected files. +caja-actions: +caja-actions: +caja-actions: +caja-actions: +caja-actions: Homepage: https://github.com/raveit65/caja-actions +caja-actions: \ No newline at end of file diff --git a/mate-build-extra.sh b/mate-build-extra.sh index 1b27aac..48295ca 100755 --- a/mate-build-extra.sh +++ b/mate-build-extra.sh @@ -46,6 +46,7 @@ for dir in \ extra/atril \ extra/caja-extensions \ extra/caja-dropbox \ + extra/caja-actions \ extra/mate-applets \ extra/mate-sensors-applet \ extra/mate-utils \