clipdl


Logs | Files | LICENSE | GitLab


1
commit a21646e0c9a275a4b3d6058cc1f8636f945f1cd3
2
Author: Connor Etherington <[email protected]>
3
Date:   Wed May 18 01:59:34 2022 +0200
4
5
    Initial commit - clipdl
6
---
7
 PKGBUILD                   | 17 +++++++++++++++++
8
 usr/share/doc/.gitkeep     |  0
9
 usr/share/licenses/LICENSE | 28 ++++++++++++++++++++++++++++
10
 3 files changed, 45 insertions(+)
11
12
diff --git a/PKGBUILD b/PKGBUILD
13
new file mode 100644
14
index 0000000..2f0b45b
15
--- /dev/null
16
+++ b/PKGBUILD
17
@@ -0,0 +1,17 @@
18
+# Maintainer: Connor Etherington <[email protected]>
19
+# ---
20
+pkgname=
21
+pkgver=1.0.1
22
+pkgrel=1
23
+pkgdesc=
24
+arch=()
25
+url="https://gitlab.com/a4to/${pkgname}"
26
+license=('MIT')
27
+depends=()
28
+source=("git+.git")
29
+sha256sums=('SKIP')
30
+
31
+package() {
32
+    install -Dm644 usr/share/licenses//LICENSE "/usr/share/licenses//LICENSE"
33
+    install -Dm755 usr/bin/
34
+}
35
diff --git a/usr/share/doc/.gitkeep b/usr/share/doc/.gitkeep
36
new file mode 100644
37
index 0000000..e69de29
38
diff --git a/usr/share/licenses/LICENSE b/usr/share/licenses/LICENSE
39
new file mode 100644
40
index 0000000..276f429
41
--- /dev/null
42
+++ b/usr/share/licenses/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.