repoup


Logs | Files | LICENSE | GitLab


1
commit b98dd2ca60338fbd645ad5a0f794130752d2e740
2
Author: Connor Etherington <[email protected]>
3
Date:   Mon Sep 19 23:54:02 2022 +0200
4
5
    Initial commit - repoup
6
---
7
 PKGBUILD                          | 17 +++++++++++++++++
8
 usr/share/doc/repoup/.gitkeep     |  0
9
 usr/share/licenses/repoup/LICENSE | 28 ++++++++++++++++++++++++++++
10
 3 files changed, 45 insertions(+)
11
12
diff --git a/PKGBUILD b/PKGBUILD
13
new file mode 100644
14
index 0000000..a6c3abb
15
--- /dev/null
16
+++ b/PKGBUILD
17
@@ -0,0 +1,17 @@
18
+# Maintainer: Connor Etherington <[email protected]>
19
+# ---
20
+pkgname=repoup
21
+pkgver=0.1.0
22
+pkgrel=1
23
+pkgdesc="A git repository updater and manager"
24
+arch=(any)
25
+url="https://gitlab.com/a4to/${pkgname}"
26
+license=('MIT')
27
+depends=()
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/repoup/.gitkeep b/usr/share/doc/repoup/.gitkeep
36
new file mode 100644
37
index 0000000..e69de29
38
diff --git a/usr/share/licenses/repoup/LICENSE b/usr/share/licenses/repoup/LICENSE
39
new file mode 100644
40
index 0000000..276f429
41
--- /dev/null
42
+++ b/usr/share/licenses/repoup/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.