Package Details: rar2fs 1.29.7-1

Git Clone URL: https://aur.archlinux.org/rar2fs.git (read-only, click to copy)
Package Base: rar2fs
Description: Fuse file system for reading Rar archives
Upstream URL: https://hasse69.github.io/rar2fs/
Licenses: GPL-3.0-only
Submitter: kevku
Maintainer: harre
Last Packager: harre
Votes: 13
Popularity: 0.000000
First Submitted: 2015-08-12 13:39 (UTC)
Last Updated: 2024-08-18 17:57 (UTC)

Latest Comments

« First ‹ Previous 1 2

gdiscry commented on 2018-12-20 18:31 (UTC)

The package does not build in a clean chroot with makechrootpkg. fuse2 should be used instead of fuse3 in the depends array.

The configure script only supports fuse2 (https://github.com/hasse69/rar2fs/blob/9fbeb084073dc8b82494e1be951516765a2f441b/configure.ac#L332) and the package probably built for some users because fuse2 was installed.

borrelnoot commented on 2018-12-03 07:27 (UTC)

The depends array needs to be updated to fuse3

mount[9096]: /sbin/mount.fuse: error while loading shared libraries: libfuse3.so.3: cannot open shared object file: No such file or directory

mokalan commented on 2018-10-06 22:09 (UTC) (edited on 2018-10-06 22:24 (UTC) by mokalan)

Latest libunrar (libunrar-1:5.6.8-1) breaks something. Downgraded back to libunrar-1:5.6.6-1 to solve the issue.

ezacaria commented on 2018-04-29 09:39 (UTC)

Thanks for the package! It built succesfully against libunrar-1:5.6.3-1

Ingram commented on 2017-05-15 19:12 (UTC) (edited on 2017-05-15 19:14 (UTC) by Ingram)

Would it be possible to get this package tied to one specific libunrar version? For instance when libunrar is updated, then previously compiled rar2fs still looks for the libunrar.so of older version and fails when you try to use rar2fs after that. What I propose, is something like this: depends=("fuse" "libunrar=1:5.5.3") I realize that the flaw with this is that it makes it hard to update libunrar and then rebuild rar2fs without removing rar2fs first.

ferpelo commented on 2017-05-12 08:09 (UTC)

It's failing to build or run with the new version of libunrar. Patch to fix it: diff --git a/PKGBUILD b/PKGBUILD index 70731aa..c600f1f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -14,9 +14,9 @@ depends=("fuse" "libunrar") makedepends=("libunrar") source=( "https://github.com/hasse69/rar2fs/releases/download/v$pkgver/rar2fs-$pkgver.tar.gz" - "http://www.rarlab.com/rar/unrarsrc-5.4.5.tar.gz") + "http://www.rarlab.com/rar/unrarsrc-5.5.3.tar.gz") sha256sums=('1961417e4e3c7afb5dec48d13ddfdc89e402389396cc21d4da06745f2ea9e417' - 'e470c584332422893fb52e049f2cbd99e24dc6c6da971008b4e2ae4284f8796c') + 'd1d9ef4a9247db088f825666de8f8bb69006d8d8b0e004ff366b3e04c103a2b3') build() { cd "$srcdir/$pkgname-$pkgver"