31 lines
920 B
Bash
31 lines
920 B
Bash
# Template file for 'fuse3'
|
|
pkgname=fuse3
|
|
version=3.9.0
|
|
revision=1
|
|
wrksrc="fuse-${version}"
|
|
build_style=meson
|
|
configure_args="--sbindir=bin -Db_lto=false -Duseroot=false"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="eudev-libudev-devel"
|
|
short_desc="Filesystem in Userspace 3.x"
|
|
maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
|
|
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=fcb7079a1bb4e510377b427d1c5c37c349281d498e249ae0c2379b4cf50059c2
|
|
conf_files="/etc/fuse.conf"
|
|
|
|
post_install() {
|
|
chmod u+s ${DESTDIR}/usr/bin/fusermount3
|
|
rm ${DESTDIR}/etc/init.d/fuse3
|
|
}
|
|
|
|
fuse3-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|