lockit


Logs | Files | LICENSE | GitLab


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