nav


Logs | Files | LICENSE | GitLab


1
commit 21473bf6b76a98dd16db3dd660605a23484c865e
2
Author: Connor Etherington <[email protected]>
3
Date:   Thu Aug 18 16:21:46 2022 +0200
4
5
    Initial commit - nav
6
---
7
 PKGBUILD                       | 17 +++++++++++++++++
8
 usr/share/doc/nav/.gitkeep     |  0
9
 usr/share/licenses/nav/LICENSE | 28 ++++++++++++++++++++++++++++
10
 3 files changed, 45 insertions(+)
11
12
diff --git a/PKGBUILD b/PKGBUILD
13
new file mode 100644
14
index 0000000..b15f113
15
--- /dev/null
16
+++ b/PKGBUILD
17
@@ -0,0 +1,17 @@
18
+# Maintainer: Connor Etherington <[email protected]>
19
+# ---
20
+pkgname=nav
21
+pkgver=1.0.1
22
+pkgrel=1
23
+pkgdesc="A means of quick navigation through directories in the CLI"
24
+arch=(any)
25
+url="https://gitlab.com/a4to/${pkgname}"
26
+license=('MIT')
27
+depends=(dialog)
28
+source=("git+$url.git")
29
+sha256sums=('SKIP')
30
+
31
+package() {
32
+    install -Dm644 usr/share/licenses/${pkgname}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
33
+    install -Dm755 usr/bin/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
34
+}
35
diff --git a/usr/share/doc/nav/.gitkeep b/usr/share/doc/nav/.gitkeep
36
new file mode 100644
37
index 0000000..e69de29
38
diff --git a/usr/share/licenses/nav/LICENSE b/usr/share/licenses/nav/LICENSE
39
new file mode 100644
40
index 0000000..276f429
41
--- /dev/null
42
+++ b/usr/share/licenses/nav/LICENSE
43
@@ -0,0 +1,28 @@
44
+MIT/X Consortium License
45
+
46
+Creator /Maintainer :
47
+© 2020-2022 Connor Etherington <[email protected]>
48
+---------------------------------------------------------------------------
49
+Contributors:
50
+
51
+
52
+---------------------------------------------------------------------------
53
+
54
+Permission is hereby granted, free of charge, to any person obtaining a copy
55
+of this software and associated documentation files (the "Software"), to deal
56
+in the Software without restriction, including without limitation the rights
57
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
58
+copies of the Software, and to permit persons to whom the Software is
59
+furnished to do so, subject to the following conditions:
60
+
61
+THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN ALL
62
+COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE.
63
+
64
+
65
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
66
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
67
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
68
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
69
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
70
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71
+SOFTWARE.