desktop/wmudmount: Kill gkr and udisks mention in README
Also enable grk usage in the build script. gkr and udisks are part of Slackware 14.0 Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
456a23c26e
commit
61ec1864d0
|
@ -2,12 +2,3 @@ wmudmount is a (dockapp) filesystem mounter that uses udisks to handle
|
|||
notification of new filesystems as a non-root user. It also includes
|
||||
a mode to display the mounted filesystems with the least free space
|
||||
percentage (similar to wmfsm).
|
||||
|
||||
This requires udisks and, optionally, gnome-keyring.
|
||||
|
||||
To compile with gnome-keyring this needs to be explicitly requested with:
|
||||
|
||||
KEYRING="YES" ./wmudmount.SlackBuild
|
||||
|
||||
Note that if you don't compile with gnome-keyring (default behavior) you
|
||||
need to run wmudmount with the "--allow-insecure-memory" command line flag.
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
PRGNAM=wmudmount
|
||||
VERSION=${VERSION:-1.8}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -54,9 +54,6 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
# To compile with gnome-keyring support, set this to "YES"
|
||||
KEYRING=${KEYRING:-NO}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
|
@ -72,16 +69,11 @@ find . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
if [ "$KEYRING" != "YES" ]; then
|
||||
EXTRA_OPTIONS="--without-gnome-keyring"
|
||||
fi
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--mandir=/usr/man \
|
||||
${EXTRA_OPTIONS} \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
|
|
Loading…
Reference in New Issue