blob: 8e248855aba15ff57bda85f08f8e0444b22b5f45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Radu Marias <radumarias@gmail.com>
#
# This PKGBUILD was generated by `cargo aur`: https://crates.io/crates/cargo-aur
pkgname=rencfs-bin
pkgver=0.13.86
pkgrel=1
pkgdesc="An encrypted file system that is mounted with FUSE on Linux. It can be used to create encrypted directories."
url="https://radumarias.github.io/rencfs"
license=("MIT OR Apache-2.0")
arch=("x86_64")
provides=("rencfs")
conflicts=("rencfs")
depends=("fuse3")
source=("https://github.com/radumarias/rencfs/releases/download/v$pkgver/rencfs-$pkgver-x86_64.tar.gz")
sha256sums=("c99075e6046c11866338e94aa68622ff90e4e6e8b728129b18d285f8c86febfd")
package() {
install -Dm755 rencfs -t "$pkgdir/usr/bin"
install -Dm644 LICENSE-Apache-2.0 "$pkgdir/usr/share/licenses/$pkgname/LICENSE-Apache-2.0"
install -Dm644 "LICENSE-Apache-2.0" "$pkgdir/usr/share/licenses/$pkgname/LICENSE-Apache-2.0"
install -Dm644 "LICENSE-MIT" "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
}
|