From f3a9ff1306e761bb7b3f4f060b5eb302def971a7 Mon Sep 17 00:00:00 2001 From: Ryan P.C. McQuen Date: Tue, 24 Jun 2014 13:07:07 +0700 Subject: misc/wcd: Added (Wherever Change Directory). Signed-off-by: Willy Sudiarto Raharjo --- misc/wcd/README | 9 +++++ misc/wcd/slack-desc | 19 +++++++++ misc/wcd/wcd.SlackBuild | 100 ++++++++++++++++++++++++++++++++++++++++++++++++ misc/wcd/wcd.info | 10 +++++ 4 files changed, 138 insertions(+) create mode 100644 misc/wcd/README create mode 100644 misc/wcd/slack-desc create mode 100644 misc/wcd/wcd.SlackBuild create mode 100644 misc/wcd/wcd.info (limited to 'misc') diff --git a/misc/wcd/README b/misc/wcd/README new file mode 100644 index 0000000000..4d75d35953 --- /dev/null +++ b/misc/wcd/README @@ -0,0 +1,9 @@ +Wcd is a command-line program to change directory fast. +It saves time typing at the keyboard. One needs to +type only a part of a directory name and wcd will +jump to it. + +Wcd has a fast selection method in case +of multiple matches and allows aliasing and banning +of directories. Wcd also includes a full screen +interactive directory tree browser with speed search. diff --git a/misc/wcd/slack-desc b/misc/wcd/slack-desc new file mode 100644 index 0000000000..ed9f4dccc4 --- /dev/null +++ b/misc/wcd/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +wcd: wcd (Wherever Change Directory) +wcd: +wcd: Wcd is a command-line program to change directory fast. +wcd: +wcd: It saves time typing at the keyboard. One needs to type only a +wcd: part of a directory name and wcd will jump to it. +wcd: +wcd: http://waterlan.home.xs4all.nl/ +wcd: +wcd: +wcd: diff --git a/misc/wcd/wcd.SlackBuild b/misc/wcd/wcd.SlackBuild new file mode 100644 index 0000000000..e47edb75cb --- /dev/null +++ b/misc/wcd/wcd.SlackBuild @@ -0,0 +1,100 @@ +#!/bin/sh + +# Slackware build script for wcd + +# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version, with the following exception: +# the text of the GPL license may be omitted. + +# This program is distributed in the hope that it will be useful, but +# without any warranty; without even the implied warranty of +# merchantability or fitness for a particular purpose. Compiling, +# interpreting, executing or merely reading the text of the program +# may result in lapses of consciousness and/or very being, up to and +# including the end of all existence and the Universe as we know it. +# See the GNU General Public License for more details. + +# You may have received a copy of the GNU General Public License along +# with this program (most likely, a file named COPYING). If not, see +# . + +PRGNAM=wcd +VERSION=${VERSION:-5.2.5} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +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/src +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 {} \; + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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 + +RPM_OPT_FLAGS="$SLKCFLAGS" \ + make all +make \ + prefix=$PKG/usr \ + docdir=$PKG/usr/doc/$PRGNAM-$VERSION \ + mandir=$PKG/usr/man \ + install + +# remove .exe so command is executable +mv $PKG/usr/bin/wcd.exe $PKG/usr/bin/wcd + +# Put _all_ man pages under usr/man +mv $PKG/usr/share/man/* $PKG/usr/man +rmdir $PKG/usr/share/man + +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 + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +cp -a ../doc/INSTALL.txt $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/misc/wcd/wcd.info b/misc/wcd/wcd.info new file mode 100644 index 0000000000..044af8d5f6 --- /dev/null +++ b/misc/wcd/wcd.info @@ -0,0 +1,10 @@ +PRGNAM="wcd" +VERSION="5.2.5" +HOMEPAGE="http://waterlan.home.xs4all.nl/" +DOWNLOAD="http://waterlan.home.xs4all.nl/wcd-5.2.5.tar.gz" +MD5SUM="95fbc29dea73f666906ce37f804afccd" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Ryan P.C. McQuen" +EMAIL="ryan.q@linux.com" -- cgit v1.2.3