29 lines
820 B
Bash
29 lines
820 B
Bash
# Template file for 'fuse3'
|
|
pkgname=fuse3
|
|
version=3.2.5
|
|
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="Michael Gehring <mg@ebfe.org>"
|
|
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=3fa7534aae3d9523bd0245f085eb753a9b9d0dc9d2902dd51d6959b2b5394cf1
|
|
|
|
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"
|
|
}
|
|
}
|