httpdirfs/PKGBUILD
Owen Trigueros 028a19c5b2 upgpkg: httpdirfs 1.2.7-2
Use -std=gnu17 instead of the new GCC 15 default -std=gnu23
2025-06-04 09:33:11 +02:00

22 lines
674 B
Bash

# Maintainer: Owen Trigueros <owentrigueros@gmail.com>
pkgname=httpdirfs
pkgver=1.2.7
pkgrel=2
pkgdesc="A filesystem which allows you to mount HTTP directory listings"
arch=('x86_64')
url="https://github.com/fangfufu/httpdirfs"
license=('GPL')
depends=('gumbo-parser' 'fuse3' 'curl' 'expat' 'util-linux-libs' 'openssl')
makedepends=('meson' 'help2man' 'doxygen' 'graphviz')
source=("$pkgname-$pkgver.tar.gz::https://github.com/fangfufu/$pkgname/archive/$pkgver.tar.gz")
md5sums=("1e7d3ed7850d7a629e31b635e5954046")
build() {
arch-meson "$pkgname-$pkgver" build -Dc_args="-std=gnu17"
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}