diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-07-24 18:06:31 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-07-24 18:06:31 +0200 |
commit | aeccb8ad0e2760ed31a360ee52eab351ec5299ac (patch) | |
tree | 000e1345a3a180803845741685cba2834827a7d3 | |
parent | 23e9c2e6cf1280b46d2085ea02f202958b4ef336 (diff) | |
download | aurbuilder-aeccb8ad0e2760ed31a360ee52eab351ec5299ac.tar.gz |
Add MIT License
-rw-r--r-- | LICENSE | 21 | ||||
-rw-r--r-- | Readme.md | 5 | ||||
-rw-r--r-- | pkgbuild/PKGBUILD | 4 |
3 files changed, 28 insertions, 2 deletions
@@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Jonas Gunz <himself at jonasgunz dot de> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. @@ -101,3 +101,8 @@ I would strongly recommend against using aurbuilder in any mission critical capa | `/usr/share/aurbuilder` | Container buildfiles and nginx config | | `/usr/lib/aurbuilder` | Executables | | `/usr/lib/systemd/system` | Systemd Unitfiles | + +## License + +This project is licensed under the MIT License. +See file `LICENSE` for details. diff --git a/pkgbuild/PKGBUILD b/pkgbuild/PKGBUILD index aef3cfa..8fb36f4 100644 --- a/pkgbuild/PKGBUILD +++ b/pkgbuild/PKGBUILD @@ -5,9 +5,9 @@ pkgrel=1 pkgdesc="AUR Package builder" arch=( any ) url="https://gitea.lauch.link/jonas/aurbuilder" -license=('CUSTOM') +license=('MIT') groups=() -depends=( podman bash ) +depends=( podman bash pacman ) makedepends=() optdepends=() source=(git+$url.git) |