graphics/feh: Updated for version 3.2.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Hunter Sezen 2019-07-16 04:43:14 -05:00 committed by Willy Sudiarto Raharjo
parent 6e8bcda2e6
commit b1ee4d5bc5
No known key found for this signature in database
GPG Key ID: 887B8374D7333381
3 changed files with 31 additions and 5 deletions

View File

@ -4,3 +4,19 @@ feh features include simple image viewing, multiple image viewing
in fullscreen, image list mode, loadable/unloadable listing,
recursive file opening, saving/loading filelists, loading images
via http, reloading after delay, montage creation, and more.
To enable builtin EXIF tag display support use:
EXIF=yes ./feh.SlackBuild
To include help text use:
HELP=yes ./feh.SlackBuild
To enable enable inotify support use:
INOTIFY=yes ./feh.SlackBuild
To support CIFS shares from 64bit hosts on 32bit machines use:
STAT64=yes ./feh.SlackBuild

View File

@ -24,7 +24,7 @@
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=feh
VERSION=${VERSION:-3.1.3}
VERSION=${VERSION:-3.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -62,6 +62,7 @@ mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
chmod 0755 $PRGNAM-$VERSION
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
@ -70,9 +71,18 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
[ "${EXIF:=0}" != 0 ] && EXIF=1
[ "${HELP:=0}" != 0 ] && HELP=1
[ "${INOTIFY:=0}" != 0 ] && INOTIFY=1
[ "${STAT64:=0}" != 0 ] && STAT64=1
CFLAGS="$SLKCFLAGS" \
make \
PREFIX=/usr
PREFIX=/usr \
exif=$EXIF \
help=$HELP \
inotify=$INOTIFY \
stat64=$STAT64
make install \
DESTDIR=$PKG \

View File

@ -1,8 +1,8 @@
PRGNAM="feh"
VERSION="3.1.3"
VERSION="3.2"
HOMEPAGE="https://feh.finalrewind.org"
DOWNLOAD="https://feh.finalrewind.org/feh-3.1.3.tar.bz2"
MD5SUM="8aad58758fb9e0a0a4b10d58aa8853d7"
DOWNLOAD="https://feh.finalrewind.org/feh-3.2.tar.bz2"
MD5SUM="db51079569dad598f26810f6a5144535"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="imlib2"