summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPZetter2021-01-11 16:43:26 +0000
committerPZetter2021-01-11 16:43:26 +0000
commit3b5d3aedfa3c1748a57f89c9d6ca1f1c77f35122 (patch)
tree5ee5f6866acf5b3045d0145fe0dd83902be119ce
downloadaur-3b5d3aedfa3c1748a57f89c9d6ca1f1c77f35122.tar.gz
Initial commit.
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD17
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..249400a1e6d8
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = confedi-git
+ pkgver = 1
+ pkgrel = 1
+ url = https://bitbucket.org/masterofhoppips/configuration-editor.git
+ arch = any
+ license = GPL
+ makedepends = git
+ depends = python3
+ source = git+https://bitbucket.org/masterofhoppips/configuration-editor.git
+ md5sums = SKIP
+
+pkgname = confedi-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..bc24f008b70b
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+pkgname=confedi-git
+pkgver=1
+pkgrel=1
+pkgdesc=""
+arch=(any)
+license=('GPL')
+depends=(python3)
+makedepends=(git)
+url="https://bitbucket.org/masterofhoppips/configuration-editor.git"
+source=("git+$url")
+#options=(!emptydirs) # no idea
+md5sums=('SKIP')
+
+package() {
+ mkdir -p "$pkgdir"/usr/bin
+ cp configuration-editor/src/program.py "$pkgdir"/usr/bin/$pkgname
+}