summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO14
-rw-r--r--.gitignore17
-rw-r--r--PKGBUILD9
3 files changed, 27 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 57fa8385c4a7..4c15d63a873f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,8 @@
+# Generated by mksrcinfo v8
+# Sun Jul 9 02:33:10 UTC 2017
pkgbase = websocketd
pkgdesc = Like inetd, but for WebSockets. Turn any application that uses STDIO/STDOUT into a WebSocket server.
- pkgver = 0.2.11
+ pkgver = 0.2.12
pkgrel = 1
url = https://github.com/joewalnes/websocketd
arch = x86_64
@@ -8,12 +10,10 @@ pkgbase = websocketd
arch = arm
license = BSD-2-Clause
depends = glibc
- source_x86_64 = https://github.com/joewalnes/websocketd/releases/download/v0.2.11/websocketd-0.2.11-linux_amd64.zip
- md5sums_x86_64 = fa2db4feab033fb01630bcd90a1c1ca4
- source_i686 = https://github.com/joewalnes/websocketd/releases/download/v0.2.11/websocketd-0.2.11-linux_386.zip
- md5sums_i686 = de34029d44ce5d8b51e1b4b027b868e1
- source_arm = https://github.com/joewalnes/websocketd/releases/download/v0.2.11/websocketd-0.2.11-linux_arm.zip
- md5sums_arm = abd72919f77a2ef4efd174e4e5c2944d
+ source_x86_64 = https://github.com/joewalnes/websocketd/releases/download/v0.2.12/websocketd-0.2.12-linux_amd64.zip
+ md5sums_x86_64 = e0ac3172dddd2709c5a5d8fa509e7464
+ source_i686 = https://github.com/joewalnes/websocketd/releases/download/v0.2.12/websocketd-0.2.12-linux_386.zip
+ md5sums_i686 = 580cff1818353e74093b3624e8a7e736
pkgname = websocketd
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..f1e9c9b518ca
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,17 @@
+### https://raw.github.com/github/gitignore/8edb8a95c4c4b3dce71a378aaaf89275510b9cef/ArchLinuxPackages.gitignore
+
+*.tar
+*.tar.*
+*.jar
+*.exe
+*.msi
+*.zip
+*.tgz
+*.log
+*.log.*
+*.sig
+
+pkg/
+src/
+
+
diff --git a/PKGBUILD b/PKGBUILD
index 42bfdee1f1e0..9f21261887e8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: wenLiangcan <boxeed at gmail dot com>
pkgname=websocketd
-pkgver=0.2.11
+pkgver=0.2.12
pkgrel=1
pkgdesc="Like inetd, but for WebSockets. Turn any application that uses STDIO/STDOUT into a WebSocket server."
arch=('x86_64' 'i686' 'arm')
@@ -10,14 +10,11 @@ license=('BSD-2-Clause ')
depends=('glibc')
source_x86_64=("https://github.com/joewalnes/websocketd/releases/download/v${pkgver}/websocketd-${pkgver}-linux_amd64.zip")
-md5sums_x86_64=('fa2db4feab033fb01630bcd90a1c1ca4')
-md5sums_i686=('de34029d44ce5d8b51e1b4b027b868e1')
-md5sums_arm=('abd72919f77a2ef4efd174e4e5c2944d')
+md5sums_x86_64=('e0ac3172dddd2709c5a5d8fa509e7464')
+md5sums_i686=('580cff1818353e74093b3624e8a7e736')
source_i686=("https://github.com/joewalnes/websocketd/releases/download/v${pkgver}/websocketd-${pkgver}-linux_386.zip")
-source_arm=("https://github.com/joewalnes/websocketd/releases/download/v${pkgver}/websocketd-${pkgver}-linux_arm.zip")
-
package() {
cd "${srcdir}"
install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"