summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authormattydebie2021-07-08 09:09:47 +0200
committermattydebie2021-07-08 09:10:49 +0200
commit5e254f3efcfc8549a9d3bf5f852bbac3fb6c2c6e (patch)
treecf505961ddbcf85bb45d1990c0a1f2a14590b1f9
downloadaur-5e254f3efcfc8549a9d3bf5f852bbac3fb6c2c6e.tar.gz
initial commit
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD16
2 files changed, 27 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..d0a88acb5ca4
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,11 @@
+pkgbase = kimai2-console
+ pkgver = 0.3.3
+ pkgrel = 1
+ url = https://github.com/kevinpapst/kimai2-console
+ arch = i686
+ arch = x86_64
+ license = unknown
+ source = https://github.com/kevinpapst/kimai2-console/releases/download/0.3.3/kimai.phar
+ sha256sums = 113e35de2a8045c2ad0510eea78076f3ac684a8af973c0b2bf7b0fa42e065103
+
+pkgname = kimai2-console
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..f88b92e92e79
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Matthias De Bie <mattydebie@gmail.com>
+
+pkgname="kimai2-console"
+pkgver="0.3.3"
+pkgrel=1
+url="https://github.com/kevinpapst/kimai2-console"
+arch=('i686' 'x86_64')
+license=('unknown')
+source=("https://github.com/kevinpapst/kimai2-console/releases/download/0.3.3/kimai.phar")
+sha256sums=('113e35de2a8045c2ad0510eea78076f3ac684a8af973c0b2bf7b0fa42e065103')
+
+package() {
+ chmod +x kimai.phar
+ mkdir $pkgdir/usr/bin -p
+ cp -f kimai.phar "${pkgdir}/usr/bin/kimai"
+}