web2desk


Logs | Files | LICENSE | GitLab


1
commit fda3cadcd73641ea114c0baf566dbbc38e1a38e0
2
Author: Connor Etherington <[email protected]>
3
Date:   Fri Mar 17 19:34:05 2023 +0200
4
5
    Initial commit - web2desk
6
---
7
 PKGBUILD                            | 17 +++++++++++++++++
8
 usr/share/doc/web2desk/.gitkeep     |  0
9
 usr/share/licenses/web2desk/LICENSE | 28 ++++++++++++++++++++++++++++
10
 3 files changed, 45 insertions(+)
11
12
diff --git a/PKGBUILD b/PKGBUILD
13
new file mode 100644
14
index 0000000..b4f4850
15
--- /dev/null
16
+++ b/PKGBUILD
17
@@ -0,0 +1,17 @@
18
+# Maintainer: Connor Etherington <[email protected]>
19
+# ---
20
+pkgname=web2desk
21
+pkgver=0.1.0
22
+pkgrel=1
23
+pkgdesc="A means of creating desktop applications from websites/webapps"
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
+  cd "$srcdir/$pkgname"
33
+  make DESTDIR="$pkgdir" clean install
34
+}
35
diff --git a/usr/share/doc/web2desk/.gitkeep b/usr/share/doc/web2desk/.gitkeep
36
new file mode 100644
37
index 0000000..e69de29
38
diff --git a/usr/share/licenses/web2desk/LICENSE b/usr/share/licenses/web2desk/LICENSE
39
new file mode 100644
40
index 0000000..276f429
41
--- /dev/null
42
+++ b/usr/share/licenses/web2desk/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.