Package Details: loggedfs-git 0.9.r7.g24b0afb-1

Git Clone URL: https://aur.archlinux.org/loggedfs-git.git (read-only, click to copy)
Package Base: loggedfs-git
Description: Filesystem monitoring with Fuse
Upstream URL: https://rflament.github.io/loggedfs/
Licenses: Apache
Conflicts: loggedfs
Provides: loggedfs
Submitter: depau
Maintainer: Dark_iaji
Last Packager: Dark_iaji
Votes: 0
Popularity: 0.000000
First Submitted: 2018-09-08 17:34 (UTC)
Last Updated: 2022-12-01 11:09 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

BoostCookie commented on 2023-11-15 13:05 (UTC)

I had to manually install fuse2 otherwise I'm getting

src/loggedfs.cpp:30:10: fatal error: fuse.h: No such file or directory
   30 | #include <fuse.h>
      |          ^~~~~~~~
compilation terminated.
make: *** [Makefile:17: build/loggedfs.o] Error 1

Please add fuse2 to the dependencies.

Scimmia commented on 2022-12-13 14:15 (UTC)

Does not build as written. If it's building for you, it's because you have fuse2 installed. Always check PKGBUILDs by building in a clean chroot. https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot

Dark_iaji commented on 2022-12-01 10:48 (UTC)

Since the upstream is still maintained by someone, simply modify the PKGBUILD file, and this package can be used.

# Maintainer: Davide Depau <davide@depau.eu>

_pkgname=loggedfs
pkgname=$_pkgname-git
pkgver=0.9.r7.g24b0afb
pkgrel=1
pkgdesc="Filesystem monitoring with Fuse"
arch=('i686' 'x86_64')
url="https://rflament.github.io/loggedfs/"
license=('Apache')
depends=('fuse3')
provides=($_pkgname)
conflicts=($_pkgname)
source=("$_pkgname::git+https://github.com/rflament/loggedfs.git")
sha256sums=('SKIP')

pkgver() {
  cd "$srcdir/$_pkgname"
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | sed 's/loggedfs.//g'
}

prepare() {
  cd "$srcdir/$_pkgname"
}

build() {
  cd "$srcdir/$_pkgname"
  make
}

package() {
  cd "$srcdir/$_pkgname"
  make DESTDIR="${pkgdir}" install
}