mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
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 changed files with 1 additions and 18 deletions
|
@ -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
|
notification of new filesystems as a non-root user. It also includes
|
||||||
a mode to display the mounted filesystems with the least free space
|
a mode to display the mounted filesystems with the least free space
|
||||||
percentage (similar to wmfsm).
|
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
|
PRGNAM=wmudmount
|
||||||
VERSION=${VERSION:-1.8}
|
VERSION=${VERSION:-1.8}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
if [ -z "$ARCH" ]; then
|
if [ -z "$ARCH" ]; then
|
||||||
|
@ -54,9 +54,6 @@ else
|
||||||
LIBDIRSUFFIX=""
|
LIBDIRSUFFIX=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# To compile with gnome-keyring support, set this to "YES"
|
|
||||||
KEYRING=${KEYRING:-NO}
|
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
rm -rf $PKG
|
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 \) \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
-exec chmod 644 {} \;
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
if [ "$KEYRING" != "YES" ]; then
|
|
||||||
EXTRA_OPTIONS="--without-gnome-keyring"
|
|
||||||
fi
|
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||||
--mandir=/usr/man \
|
--mandir=/usr/man \
|
||||||
${EXTRA_OPTIONS} \
|
|
||||||
--build=$ARCH-slackware-linux
|
--build=$ARCH-slackware-linux
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
Loading…
Reference in a new issue