das Thema hat zwar einen gelöst-Haken, aber ich bin mir nicht sicher, ob es tatsächlich für dich gelöst wurde. Da nun teacher4711 auf https://aur.archlinux.org/packages/davfs2 praktischerweise eine gepatchte PKGBUILD-Datei veröffentlicht hat schreibe ich mal kurz eine Anleitung, wie man mit dieser PKGBUILD davfs2 installiert:
1. den Code von teacher4711 herunterladen
Code: Alles auswählen
# Contributor: Thomas Baechler <thomas@archlinux.org>
pkgname=davfs2
pkgver=1.7.1
pkgrel=0
pkgdesc="File system driver that allows you to mount a WebDAV folder"
arch=('armv7h' 'aarch64' 'x86_64')
url="https://savannah.nongnu.org/projects/${pkgname}"
license=('GPL')
depends=('neon' 'po4a')
makedepend=('base-devel')
backup=(etc/${pkgname}/${pkgname}.conf etc/${pkgname}/secrets)
source=(https://download-mirror.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
validpgpkeys=('51A0F4A0C8CFC98F842EA9A8B94556F81C85D0D5') # Ali Abdallah <aabdallah@suse.com>
sha512sums=('187a2ccd8946fbd659cbb96165fe5523c9c4f2ba855087bc0493ebce198a5ec581543576f0dd2a8e5da96c4abcc10bb83fcb3d5b573aa72bd1871a9f3914c364'
'SKIP')
prepare() {
cd ${pkgname}-${pkgver}
sed -i 's/NE_REQUIRE_VERSIONS(\[0\], \[27 28 29 30 31 32 33\])/NE_REQUIRE_VERSIONS(\[0\], \[27 28 29 30 31 32 33 34\])/g' configure.ac
./bootstrap
}
build() {
cd ${pkgname}-${pkgver}
dav_user=nobody dav_group=network ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --disable-debug
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
3. in diesem Verzeichnis (praktischerweise /tmp)
Code: Alles auswählen
makepkg --install
4. dann kannst du die Magentacloud wie gewünscht einhängen.
viele Grüsse gosia