lilac/repo/httpdirfs/PKGBUILD

23 lines
653 B
Bash
Raw Normal View History

2023-05-20 03:13:01 +00:00
# Maintainer: Owen Trigueros <owentrigueros@gmail.com>
pkgname=httpdirfs
2024-12-20 16:09:00 +00:00
pkgver=1.2.7
2024-12-21 05:02:07 +00:00
pkgrel=14
2023-05-20 03:13:01 +00:00
pkgdesc="A filesystem which allows you to mount HTTP directory listings"
arch=('x86_64')
url="https://github.com/fangfufu/httpdirfs"
license=('GPL')
2024-12-20 16:09:00 +00:00
depends=('gumbo-parser' 'fuse3' 'curl' 'expat' 'util-linux-libs' 'openssl')
makedepends=('meson' 'help2man' 'doxygen' 'graphviz')
2023-05-20 03:13:01 +00:00
source=("$pkgname-$pkgver.tar.gz::https://github.com/fangfufu/$pkgname/archive/$pkgver.tar.gz")
2024-12-20 16:09:00 +00:00
md5sums=("1e7d3ed7850d7a629e31b635e5954046")
2023-05-20 03:13:01 +00:00
build() {
2024-12-20 16:09:00 +00:00
arch-meson "$pkgname-$pkgver" build
meson compile -C build
2023-05-20 03:13:01 +00:00
}
package() {
2024-12-20 16:09:00 +00:00
meson install -C build --destdir "$pkgdir"
2023-05-20 03:13:01 +00:00
}