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