lilac/repo/httpdirfs/PKGBUILD

26 lines
630 B
Bash
Raw Normal View History

2023-05-20 03:13:01 +00:00
# Maintainer: Owen Trigueros <owentrigueros@gmail.com>
pkgname=httpdirfs
pkgver=1.2.5
2024-02-18 13:01:37 +00:00
pkgrel=2
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')
depends=('gumbo-parser' 'fuse2' 'curl' 'expat')
2024-02-18 13:01:37 +00:00
makedepends=('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")
md5sums=("77910de057b196ed7b3714f7a0698203")
build() {
cd "$pkgname-$pkgver"
make man
make doc
make
}
package() {
cd "$pkgname-$pkgver"
make prefix=/usr DESTDIR="$pkgdir" install
}