summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorgoreleaserbot2024-02-29 18:07:29 +0000
committergoreleaserbot2024-02-29 18:07:29 +0000
commit58c380edd0b4e910abf32bc7de439514498d5b0d (patch)
tree64f572fea6d7f52dc4baf47d09c3770bcf254853
downloadaur-58c380edd0b4e910abf32bc7de439514498d5b0d.tar.gz
Update to v0.1.0
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD22
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8dfeb85f6326
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = gmotd-bin
+ pkgdesc = a configurable, dynamic motd generator
+ pkgver = 0.1.0
+ pkgrel = 1
+ url = https://jon4hz.io
+ license = MIT
+ conflicts = gmotd
+ provides = gmotd
+ arch = x86_64
+ source_x86_64 = https://github.com/jon4hz/gmotd/releases/download/v0.1.0/gmotd-v0.1.0-linux-amd64.tar.gz
+ sha256sums_x86_64 = b7df3b57e628ac93b736b52e09ca39228f7b1fca160d5d3e3b992e7ab894fb51
+
+pkgname = gmotd-bin
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..32eac931563a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,22 @@
+# This file was generated by GoReleaser. DO NOT EDIT.
+# Maintainer: jonah <me@jon4hz.io>
+
+pkgname='gmotd-bin'
+pkgver=0.1.0
+pkgrel=1
+pkgdesc='a configurable, dynamic motd generator'
+url='https://jon4hz.io'
+arch=('x86_64')
+license=('MIT')
+provides=('gmotd')
+conflicts=('gmotd')
+
+source_x86_64=("${pkgname}_${pkgver}_x86_64.tar.gz::https://github.com/jon4hz/gmotd/releases/download/v0.1.0/gmotd-v0.1.0-linux-amd64.tar.gz")
+sha256sums_x86_64=('b7df3b57e628ac93b736b52e09ca39228f7b1fca160d5d3e3b992e7ab894fb51')
+
+package() {
+ # bin
+ install -Dm755 "./gmotd" "${pkgdir}/usr/bin/gmotd"
+ # license
+ install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/gmotd/LICENSE"
+}