Package Details: guile-websocket 0.3.0-1

Git Clone URL: https://aur.archlinux.org/guile-websocket.git (read-only, click to copy)
Package Base: guile-websocket
Description: A guile implementation of the WebSocket protocol as defined by RFC 6455.
Upstream URL: https://dthompson.us/projects/guile-websocket.html
Licenses: LGPL-3.0-or-later
Submitter: tealeg
Maintainer: fabi
Last Packager: fabi
Votes: 1
Popularity: 0.001369
First Submitted: 2025-07-20 15:31 (UTC)
Last Updated: 2026-06-13 05:05 (UTC)

Latest Comments

fabi commented on 2026-06-12 20:08 (UTC)

Would you mind upgrading to 0.3.0, here would be an updated pkgbuild:

# Maintainer: Geoffrey Teale <geoffrey@teale.de>
_name=websocket
pkgname=guile-$_name
pkgver=0.3.0
pkgrel=1
pkgdesc="A guile implementation of the WebSocket protocol as defined by RFC 6455."
arch=(any)
url="https://dthompson.us/projects/guile-websocket.html"
license=('LGPL-3.0-or-later')
depends=("guile>=3.0", "guile-gnutls")
makedepends=("guile>=3.0")
source=(https://files.dthompson.us/releases/$pkgname/$pkgname-$pkgver.tar.gz)
sha256sums=('1ba6c0d1d175f4a68b58ce003257477e3931fea0d70593881aa7177cb99483fc')

build() {
  cd "$pkgname-$pkgver"

  ./configure --prefix=/usr
  make
}

package() {
  cd "$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}