-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathtemplate
More file actions
30 lines (28 loc) · 870 Bytes
/
template
File metadata and controls
30 lines (28 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Template file for 'fuse-sshfs'
pkgname=fuse-sshfs
version=3.7.6
revision=1
build_style=meson
configure_args="--sbindir=bin"
hostmakedepends="pkg-config python3-docutils"
makedepends="fuse3-devel libglib-devel"
depends="openssh"
checkdepends="python3-pytest which"
short_desc="FUSE client based on the SSH File Transfer Protocol"
maintainer="skmpz <dem.procopiou@gmail.com>"
license="GPL-2.0-or-later"
homepage="https://github.com/libfuse/sshfs"
distfiles="https://github.com/libfuse/sshfs/releases/download/sshfs-${version}/sshfs-${version}.tar.xz"
checksum=6a1bcb31450a077e9cb1b7ff158c71de34db697c3c0da6cb362502131e495893
case "${XBPS_TARGET_MACHINE}" in
i686|armv6l|armv7l)
CFLAGS="-D_FILE_OFFSET_BITS=64"
esac
do_check() {
cd build
if [ "$XBPS_CHECK_PKGS" = "full" ]; then
python3 -m pytest
else
python3 -m pytest test/test_hostname_validation.py
fi
}