blob: 14aab1b1bd627071f0d342d69703d14f7d032e3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Frank Bearoff fbearoff at gmail dot com
pkgname=dufs-bin
pkgver=v0.43.0
pkgrel=1
pkgdesc='Dufs is a distinctive utility file server that supports static serving, uploading, searching, accessing control, webdav...'
arch=('x86_64')
url="https://github.com/sigoden/${pkgname%-bin}"
license=('APACHE' 'MIT')
depends=()
source=("${url}/releases/download/${pkgver}/${pkgname%-bin}-${pkgver}-x86_64-unknown-linux-musl.tar.gz"
"https://raw.githubusercontent.com/sigoden/dufs/main/LICENSE-MIT")
sha256sums=('e41a21fd11d1cbbc7fcaba8c6d246d878dfab5a5d12be48db84d8067c3f1c995'
'4623d04ec401ec83c94b935d75d8b4329e860580e91ed777ef03a0aa3b31bb04')
package() {
install -Dm755 "dufs" "${pkgdir}/usr/bin/${pkgname%-bin}"
install -Dm644 "LICENSE-MIT" "${pkgdir}/usr/share/licenses/${pkgname%-bin}/LICENSE"
}
|