Package Details: httpdirfs 1.3.3-1

Git Clone URL: https://aur.archlinux.org/httpdirfs.git (read-only, click to copy)
Package Base: httpdirfs
Description: A filesystem which allows you to mount HTTP directory listings
Upstream URL: https://github.com/fangfufu/httpdirfs
Licenses: GPL
Submitter: owentrigueros
Maintainer: owentrigueros
Last Packager: owentrigueros
Votes: 41
Popularity: 1.03
First Submitted: 2019-10-25 07:21 (UTC)
Last Updated: 2026-06-12 15:09 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4

owentrigueros commented on 2022-07-30 10:01 (UTC)

Thanks @rafaelff for reporting them, they are fixed now!

rafaelff commented on 2022-07-28 12:29 (UTC)

namcap reports the following about the PKGBUILD:

PKGBUILD (httpdirfs) W: Non-unique source name (1.2.3.tar.gz). Use a unique filename.

and about the generated package:

httpdirfs E: ELF file ('usr/bin/httpdirfs') found in an 'any' package.
httpdirfs E: Dependency expat detected and not included (libraries ['usr/lib/libexpat.so.1'] needed in files ['usr/bin/httpdirfs'])
httpdirfs E: Dependency curl detected and not included (libraries ['usr/lib/libcurl.so.4'] needed in files ['usr/bin/httpdirfs'])

Please consider fixing the warning and the errors reported.

djmattyg007 commented on 2020-12-10 12:14 (UTC)

You can remove it now and just not bump the version number. The change will still be in git, and you're less likely to forget :)

owentrigueros commented on 2020-09-28 11:20 (UTC) (edited on 2020-09-28 11:21 (UTC) by owentrigueros)

@djmattyg007 True, I will remove it in the next release, I'm not going to make people recompile because of that :)

djmattyg007 commented on 2020-09-27 04:39 (UTC)

The prepare() function is now just a single 'cd' command, which means the prepare() function as a whole can be removed.

owentrigueros commented on 2020-07-10 05:51 (UTC)

@djmattyg007 Thank you! I've updated the package with your suggestions.

djmattyg007 commented on 2020-07-09 12:14 (UTC)

A couple of suggestions for the PKGBUILD:

  1. You can avoid modifying the makefile by just passing 'prefix=/usr' when running 'make install', like so:

make prefix=/usr DESTDIR="$pkgdir" install

  1. It isn't necessary to specify dependencies as make dependencies. All regular dependencies are automatically required at make time.