diff options
author | B. Watson <yalhcru@gmail.com> | 2021-12-09 12:13:22 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-10 08:37:39 +0700 |
commit | d444b86319bb6a3bcb5dbf70633c12a0510a90af (patch) | |
tree | ba3f663c375d4106b72318fd3879f5b960c807d4 | |
parent | 04f6623052e7eef97322905739a43256a8e91c13 (diff) | |
download | slackbuilds-d444b86319bb6a3bcb5dbf70633c12a0510a90af.tar.gz |
system/filerunner: Remove (unmaintainable mess).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/filerunner/README | 12 | ||||
-rw-r--r-- | system/filerunner/doinst.sh | 14 | ||||
-rw-r--r-- | system/filerunner/filerunner.SlackBuild | 124 | ||||
-rw-r--r-- | system/filerunner/filerunner.info | 10 | ||||
-rw-r--r-- | system/filerunner/slack-desc | 19 |
5 files changed, 0 insertions, 179 deletions
diff --git a/system/filerunner/README b/system/filerunner/README deleted file mode 100644 index 13cd824d28..0000000000 --- a/system/filerunner/README +++ /dev/null @@ -1,12 +0,0 @@ -filerunner (two-pane graphical file manager) - -FileRunner is a very configurable two-pane file manager for Unix and -Windows systems. It is simple and efficient and has a built-in FTP/SFTP -client. - -FileRunner's config files can be found in ~/.config/.fr. - -Note: the FileRunner executable is normally called /usr/bin/fr. I've -renamed it to /usr/bin/filerunner, since there's already a system/fr -package that installs a /usr/bin/fr. If system/fr is not installed, -you'll get a /usr/bin/fr symlink to filerunner. diff --git a/system/filerunner/doinst.sh b/system/filerunner/doinst.sh deleted file mode 100644 index f05aaf46fc..0000000000 --- a/system/filerunner/doinst.sh +++ /dev/null @@ -1,14 +0,0 @@ -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 usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi - -# If there's no fr link, take over: -if [ ! -r usr/bin/fr ]; then - ( cd usr/bin ; ln -sf filerunner fr ) -fi diff --git a/system/filerunner/filerunner.SlackBuild b/system/filerunner/filerunner.SlackBuild deleted file mode 100644 index 4d76b2970a..0000000000 --- a/system/filerunner/filerunner.SlackBuild +++ /dev/null @@ -1,124 +0,0 @@ -#!/bin/bash - -# Slackware build script for filerunner - -# Written by B. Watson (yalhcru@gmail.com) - -# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. - -# Upstream's official RPM release claims to be noarch, but it's a dirty -# lie: it includes libinotify1.4.1.so binaries[*] for various arches. So -# does the source, but we're not trusting binaries that were probably -# built on Red Hat. The source for the prebuilt binaries is included, -# so this script compiles it instead. - -# [*] It breaks FHS and Slackware standards by installing arch-dependent -# files (shared libs) in /usr/share, too. But I'm going to leave it -# that way. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=filerunner -VERSION=${VERSION:-20.05.02.17} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -SRCNAM=fr - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -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" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -# called twice, make it a func -fixperms() { - chown -R root:root . - find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ - \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ -} - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $PRGNAM -fixperms - -# DO NOT use precompiled binaries! -rm -rf packages/inotify/* - -# Use tcl's idea of our architecture, since that's what fr will use -# to locate the inotify tcl extension. -TCLARCH="$( echo 'puts $::tcl_platform(machine)' | tclsh )" -mkdir -p packages/inotify/$TCLARCH - -# Compile the library that prevents this from being a noarch package: -cd Makefiles -LIBNAM=tcl-inotify -LIBVER="$( echo $LIBNAM-*.tar.gz | sed 's,.*-\([0-9.]*\)\.tar.gz,\1,' )" -tar xvf $LIBNAM-$LIBVER.tar.gz -fixperms - -cd $LIBNAM-$LIBVER -./configure && make - -# Install it where fr INSTALL script expects to find it. -install -s libinotify$LIBVER.so \ - $TMP/$PRGNAM/packages/inotify/$TCLARCH - -# Now we can install the main package. -cd - -DESTDIR=$PKG \ -DOCS=/usr/doc/$PRGNAM-$VERSION \ - ./INSTALL -nogui - -# Make this symlink so fr won't try to do it at runtime (and fail, if -# not running as root). -( cd $PKG/usr/share/$PRGNAM/packages/inotify - ln -s $TCLARCH/libinotify$LIBVER.so . ) - -# We have a slight conflict with system/fr, so: -mv $PKG/usr/bin/$SRCNAM $PKG/usr/bin/$PRGNAM -sed -i "/^Exec/s|$SRCNAM|$PRGNAM|" $PKG/usr/share/applications/$PRGNAM.desktop - -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 diff --git a/system/filerunner/filerunner.info b/system/filerunner/filerunner.info deleted file mode 100644 index 1304749807..0000000000 --- a/system/filerunner/filerunner.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="filerunner" -VERSION="20.05.02.17" -HOMEPAGE="https://sourceforge.net/projects/filerunner/" -DOWNLOAD="https://downloads.sourceforge.net/project/filerunner/release-20.05.02.17/fr-20.05.02.17.tar.gz" -MD5SUM="a8787d750f729c8487e44e16075aa671" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="B. Watson" -EMAIL="yalhcru@gmail.com" diff --git a/system/filerunner/slack-desc b/system/filerunner/slack-desc deleted file mode 100644 index c40867c9a6..0000000000 --- a/system/filerunner/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -filerunner: filerunner (two-pane graphical file manager) -filerunner: -filerunner: FileRunner is a very configurable two-pane file manager for Unix -filerunner: and Windows systems. It is simple and efficient and has a built-in -filerunner: FTP/SFTP client. -filerunner: -filerunner: -filerunner: -filerunner: -filerunner: -filerunner: |