mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/spacefm: Updated for version 1.0.4 + optional gdb support.
Signed-off-by: Ryan P.C. McQuen <ryan.q@linux.com>
This commit is contained in:
parent
7a7e1d1d8f
commit
9064296ecc
3 changed files with 15 additions and 5 deletions
|
@ -2,5 +2,9 @@ SpaceFM is a multi-panel tabbed file manager for Linux
|
|||
with built-in VFS, udev-based device manager,
|
||||
customizable menu system, and bash integration.
|
||||
|
||||
To build spacefm with gdb support, run:
|
||||
|
||||
DEBUG=yes sh spacefm.SlackBuild
|
||||
|
||||
udevil is an optional dependency to mount networks
|
||||
(nfs://, smb://, ftp://, ssh://) and other filesystems.
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for spacefm
|
||||
|
||||
# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com
|
||||
|
@ -25,7 +24,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=spacefm
|
||||
VERSION=${VERSION:-1.0.3}
|
||||
VERSION=${VERSION:-1.0.4}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -56,6 +55,13 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
## thanks to Hunter S for the idea,
|
||||
## and ponce for the elegant solution
|
||||
DEBUG=${DEBUG:-no}
|
||||
if [ "${DEBUG}" = "yes" ]; then
|
||||
SLKCFLAGS=$(echo $SLKCFLAGS | sed "s|-O2|-Og -ggdb3|g")
|
||||
fi
|
||||
|
||||
## detect video thumbnail support, requires ffmpegthumbnailer:
|
||||
## http://slackbuilds.org/apps/ffmpegthumbnailer/
|
||||
if pkg-config --exists libffmpegthumbnailer; then VIDEO_THUMBNAIL_FLAG=""; else VIDEO_THUMBNAIL_FLAG="--disable-video-thumbnails"; fi
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="spacefm"
|
||||
VERSION="1.0.3"
|
||||
VERSION="1.0.4"
|
||||
HOMEPAGE="http://ignorantguru.github.com/spacefm/"
|
||||
DOWNLOAD="https://github.com/IgnorantGuru/spacefm/archive/1.0.3.tar.gz"
|
||||
MD5SUM="000e26dc414443f934e3838610cb6174"
|
||||
DOWNLOAD="https://github.com/IgnorantGuru/spacefm/archive/1.0.4.tar.gz"
|
||||
MD5SUM="a51a8fab15483ef05a093841783a53f3"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue