summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorcaltlgin2020-06-15 14:39:08 +1200
committercaltlgin2020-06-15 14:39:08 +1200
commite4e1becaeaba68844daa13bb7bcec9ce9a1160d4 (patch)
treeb532768e549be2b2218c3a0928f68e1c99c230f0
parentad97ad9ef5be264aa3af1d7edb32509ff8abd382 (diff)
downloadaur-e4e1becaeaba68844daa13bb7bcec9ce9a1160d4.tar.gz
Clean PKGBUILD in lines with packaging guidelines
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD13
2 files changed, 8 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5353cf91531f..ca371b6ee8ca 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,11 @@
pkgbase = ssh-chat-bin
pkgdesc = Chat over SSH
pkgver = 1.9
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/shazow/ssh-chat
arch = x86_64
license = MIT
provides = ssh-chat
- conflicts = ssh-chat
- conflicts = ssh-chat-git
source = https://github.com/shazow/ssh-chat/releases/download/v1.9/ssh-chat-linux_amd64.tgz
sha256sums = 7231019c043f16b4bb93c35ad9f3d84ac786b6b6749b043b2dd697f85989ab5f
diff --git a/PKGBUILD b/PKGBUILD
index 755ec4491096..b284bf9c3c7a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,18 +3,19 @@
_pkgname=ssh-chat
pkgname=${_pkgname}-bin
pkgver=1.9
-pkgrel=1
-pkgdesc="Chat over SSH"
+pkgrel=2
+pkgdesc='Chat over SSH'
arch=('x86_64')
-url="https://github.com/shazow/${_pkgname}"
+url='https://github.com/shazow/ssh-chat'
license=('MIT')
-source=("${url}/releases/download/v${pkgver}/${_pkgname}-linux_amd64.tgz")
provides=("${_pkgname}")
-conflicts=("${_pkgname}" "${_pkgname}-git")
+source=("${url}/releases/download/v${pkgver}/${_pkgname}-linux_amd64.tgz")
sha256sums=('7231019c043f16b4bb93c35ad9f3d84ac786b6b6749b043b2dd697f85989ab5f')
package() {
install -Dm755 "${_pkgname}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
install -Dm644 "${_pkgname}/README.md" "${pkgdir}/usr/share/doc/${_pkgname}/README.md"
install -Dm644 "${_pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
-} \ No newline at end of file
+}
+
+# vim: ts=2 sw=2 et: \ No newline at end of file