From 1a862493e23f5b78996d309cab5974a96793bfba Mon Sep 17 00:00:00 2001 From: Antoni Spaanderman <56turtle56@gmail.com> Date: Thu, 4 Nov 2021 21:28:45 +0100 Subject: [PATCH] add license and more readme --- LICENSE | 21 +++++++++++++++++++++ README.md | 34 ++++++++++++++++++++++++++++++++++ aur/.SRCINFO | 5 +++-- aur/PKGBUILD | 3 ++- 4 files changed, 60 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..162265d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2021 Antoni Spaanderman + +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. diff --git a/README.md b/README.md index 8f4bfd1..2f936af 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,37 @@ For example: `/dev/sdb3` will be mounted at `/usb/sdb3`. Does not come with the bloat desktop managers come with. +### Install + +##### Arch Linux + +```bash +git clone https://aur.archlinux.org/simple-usb-automount.git +cd simple-usb-automount +makepkg -i +``` + +##### Other distros + +```bash +sudo ./install +``` + +### Remove + +##### Arch Linux + +```bash +sudo pacman -R simple-usb-automount +``` + +##### Other distros + +```bash +sudo ./remove +``` + +### License + +MIT + diff --git a/aur/.SRCINFO b/aur/.SRCINFO index 187f7cf..0fc56d4 100644 --- a/aur/.SRCINFO +++ b/aur/.SRCINFO @@ -1,10 +1,11 @@ pkgbase = simple-usb-automount - pkgver = 1.0.2 + pkgdesc = Really simple usb storage device auto mounter + pkgver = 1.0.3 pkgrel = 1 url = https://github.com/antonilol/simple-usb-automount arch = any license = MIT - source = simple-usb-automount::git+https://github.com/antonilol/simple-usb-automount#tag=v1.0.2 + source = simple-usb-automount::git+https://github.com/antonilol/simple-usb-automount#tag=v1.0.3 md5sums = SKIP pkgname = simple-usb-automount diff --git a/aur/PKGBUILD b/aur/PKGBUILD index c652bba..0c33150 100644 --- a/aur/PKGBUILD +++ b/aur/PKGBUILD @@ -1,8 +1,9 @@ # Maintainer: Antoni Spaanderman <56turtle56@gmail.com> pkgname=simple-usb-automount -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 +pkgdesc="Really simple usb storage device auto mounter" arch=('any') url=https://github.com/antonilol/simple-usb-automount license=('MIT')