summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-03-30 23:32:01 +0300
committerDimitris Kiziridis2020-03-30 23:32:01 +0300
commitf6b3a687d8426160ca4723cda70bdef426c2cf0e (patch)
treeabc1beb62fc418b9ce3fcda1e47d1d64a666107e
downloadaur-f6b3a687d8426160ca4723cda70bdef426c2cf0e.tar.gz
Initial commmit
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD16
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..cb1c3c3ef557
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = chyle-bin
+ pkgdesc = Changelog generator: use a git repository and various data sources and publish the result on external services
+ pkgver = 1.9.0
+ pkgrel = 1
+ url = https://github.com/antham/chyle
+ arch = x86_64
+ license = MIT
+ provides = chyle
+ source = https://github.com/antham/chyle/releases/download/v1.9.0/chyle_linux_amd64
+ md5sums = 3b07bd456a017f4e23d829594826c920
+
+pkgname = chyle-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..a0c32775f5a2
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
+
+pkgname=chyle-bin
+pkgver=1.9.0
+pkgrel=1
+provides=('chyle')
+pkgdesc="Changelog generator: use a git repository and various data sources and publish the result on external services"
+arch=('x86_64')
+url='https://github.com/antham/chyle'
+license=('MIT')
+source=("${url}/releases/download/v${pkgver}/chyle_linux_amd64")
+md5sums=('3b07bd456a017f4e23d829594826c920')
+
+package() {
+ install -Dm755 "${srcdir}"/chyle* "${pkgdir}/usr/bin/chyle"
+} \ No newline at end of file