httpdirfs: auto updated to 1.2.7-1

This commit is contained in:
Lilac 2024-12-20 16:09:00 +00:00
parent 52f8e7dd3d
commit d2872a1ae8

View file

@ -1,25 +1,22 @@
# Maintainer: Owen Trigueros <owentrigueros@gmail.com>
pkgname=httpdirfs
pkgver=1.2.5
pkgrel=2
pkgver=1.2.7
pkgrel=1
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' 'fuse2' 'curl' 'expat')
makedepends=('help2man' 'doxygen' 'graphviz')
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=("77910de057b196ed7b3714f7a0698203")
md5sums=("1e7d3ed7850d7a629e31b635e5954046")
build() {
cd "$pkgname-$pkgver"
make man
make doc
make
arch-meson "$pkgname-$pkgver" build
meson compile -C build
}
package() {
cd "$pkgname-$pkgver"
make prefix=/usr DESTDIR="$pkgdir" install
meson install -C build --destdir "$pkgdir"
}