-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add BSD3 license and include all licenses in binary
- Loading branch information
1 parent
690dc4f
commit 41878ee
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[package] | ||
name = "rencfs" | ||
description = "An encrypted file system that is mounted with FUSE on Linux. It can be used to create encrypted directories." | ||
version = "0.13.47" | ||
version = "0.13.48" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
license = "MIT OR Apache-2.0 OR BSD3" | ||
authors = ["Radu Marias <[email protected]>"] | ||
homepage = "https://github.com/radumarias/rencfs" | ||
repository = "https://github.com/radumarias/rencfs" | ||
|
@@ -63,6 +63,11 @@ fuse3 = { version = "0.7.1", features = ["tokio-runtime", "unprivileged"] } | |
|
||
[package.metadata.aur] | ||
depends = ["fuse3"] | ||
files = [ | ||
["LICENSE-APACHE", "/usr/share/licenses/$pkgname/LICENSE-APACHE"], | ||
["LICENSE-MIT", "/usr/share/licenses/$pkgname/LICENSE-MIT"], | ||
# ["LICENSE-BSD3", "/usr/share/licenses/$pkgname/LICENSE-BSD3"] | ||
] | ||
|
||
[package.metadata.generate-rpm] | ||
assets = [ | ||
|