31 lines
849 B
Bash
31 lines
849 B
Bash
# Template file for 'fuse3'
|
|
pkgname=fuse3
|
|
version=3.2.6
|
|
revision=1
|
|
wrksrc="fuse-${version}"
|
|
build_style=meson
|
|
configure_args="--sbindir=bin"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="eudev-libudev-devel"
|
|
short_desc="Filesystem in Userspace 3.x"
|
|
maintainer="Orphaned <orphan@voidlinux.eu>"
|
|
license="GPL-2.0-or-later, LGPL-2.1-or-later"
|
|
homepage="https://github.com/libfuse/libfuse"
|
|
distfiles="https://github.com/libfuse/libfuse/releases/download/fuse-${version}/fuse-${version}.tar.xz"
|
|
checksum=cea4dad559b3fbdbb8e4ad5f9df6083fdb7f2b904104bd507ef790d311d271cf
|
|
conf_files="/etc/fuse.conf"
|
|
|
|
post_install() {
|
|
chmod u+s ${DESTDIR}/usr/bin/fusermount3
|
|
}
|
|
|
|
fuse3-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|