mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/davfs2: Updated for version 1.5.4.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
5edd9a4249
commit
dcc2900e80
3 changed files with 12 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
|||
HOW TO CONNECT WITH A WEBDAV SERVER WITH THE DAVF2 APPLICATION
|
||||
|
||||
In this HOWTO, the user is named "user"
|
||||
In this HOWTO, the user is named "chris"
|
||||
Amend as required for your choice of username.
|
||||
|
||||
1. Login as root
|
||||
|
@ -42,7 +42,7 @@ Amend as required for your choice of username.
|
|||
9. Move the certificate to $HOME/davfs2/certs/private and restrict the permission to rw-------:
|
||||
For example:
|
||||
|
||||
$ mv CERTIFICATE.pfx $HOME/.davfs2/certs/private/
|
||||
$ mv CERTIFICATE.PFX $HOME/.davfs2/certs/private/
|
||||
$ chmod 600 $HOME/.davfs2/certs/private/CERIFICATE.PFX
|
||||
|
||||
10. Optionally: Copy the system configuration file. There are a lot of
|
||||
|
@ -80,9 +80,9 @@ Amend as required for your choice of username.
|
|||
|
||||
14. Mount the davfs service on $HOME/mnt/dav
|
||||
|
||||
$ mount https://example.org/user
|
||||
$ mount $HOME/mnt/dav
|
||||
|
||||
You should be able to see your WEBDAV server on $HOME/mnt/user
|
||||
You should be able to see your WEBDAV server on $HOME/mnt/dav/
|
||||
|
||||
15. When you would like to disconnect:
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# Copyright (c) 2008, Justin H Haynes <justin@justinhaynes.com>
|
||||
# Copyright (c) 2012 Chris Abela, Malta
|
||||
# Copyright 2014 Ryan P.C. McQuen, WA, ryan.q@linux.com
|
||||
# Copyright 2014 Chris Abela, Malta
|
||||
# Copyright 2014, 2016 Chris Abela, Malta
|
||||
#
|
||||
# Permission to use, copy, modify, and/or distribute this software for any
|
||||
# purpose with or without fee is hereby granted, provided that the above
|
||||
|
@ -22,7 +22,7 @@
|
|||
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
||||
|
||||
PRGNAM=davfs2
|
||||
VERSION=${VERSION:-1.5.2}
|
||||
VERSION=${VERSION:-1.5.4}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -31,7 +31,7 @@ DAVFS2_GROUP=${DAVFS2_GROUP:-davfs2}
|
|||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -59,8 +59,8 @@ if ! grep -q "^$DAVFS2_USER:" /etc/passwd; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="davfs2"
|
||||
VERSION="1.5.2"
|
||||
VERSION="1.5.4"
|
||||
HOMEPAGE="http://savannah.nongnu.org/projects/davfs2"
|
||||
DOWNLOAD="http://ftp.cc.uoc.gr/mirrors/nongnu.org/davfs2/davfs2-1.5.2.tar.gz"
|
||||
MD5SUM="376bc9346454135cba78afacbcb23f86"
|
||||
DOWNLOAD="http://ftp.cc.uoc.gr/mirrors/nongnu.org/davfs2/davfs2-1.5.4.tar.gz"
|
||||
MD5SUM="c9f0b557275b7ec88fec751bf22f30cf"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue