summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Csiky (csicar)2018-06-10 10:58:13 +0200
committerCarsten Csiky (csicar)2018-06-10 10:58:13 +0200
commit4f369b1782f3078dfca94893568f12a95b374bda (patch)
tree1402158d0f0e4d1c1d42fe28fa6ca184fce2c9f7
downloadaur-4f369b1782f3078dfca94893568f12a95b374bda.tar.gz
initial
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD18
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..3cd3d59b8167
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = gtm-bin
+ pkgdesc = Simple, seamless, lightweight time tracking for Git
+ pkgver = v1.3.3
+ pkgrel = 1
+ url = https://github.com/git-time-metric/gtm
+ arch = x86_64
+ license = MIT
+ provides = gtm
+ conflicts = gtm
+ source = https://github.com/git-time-metric/gtm/releases/download/v1.3.3/v1.3.3.linux.tar.gz
+ sha256sums = 0022ccde788ac85f4648338ddfd4bd20cdd8dd9adc0232cc52d453d2f27cdd6f
+
+pkgname = gtm-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..560dfb4d35fa
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: csicar
+pkgname=gtm-bin
+_pkgname=gtm
+pkgver=v1.3.3
+pkgrel=1
+pkgdesc="Simple, seamless, lightweight time tracking for Git"
+arch=('x86_64')
+url="https://github.com/git-time-metric/gtm"
+license=('MIT')
+provides=('gtm')
+conflicts=('gtm')
+# https://github.com/git-time-metric/gtm/releases/download/v1.3.3/gtm.v1.3.3.linux.tar.gz
+source=("https://github.com/git-time-metric/$_pkgname/releases/download/$pkgver/$_pkgname.$pkgver.linux.tar.gz")
+sha256sums=('0022ccde788ac85f4648338ddfd4bd20cdd8dd9adc0232cc52d453d2f27cdd6f')
+
+package() {
+ install -Dm755 gtm ${pkgdir}/usr/bin/gtm
+}