summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 69c6c42326face9e54c3bf54c577b2e5497191c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Maintainer: Arturo Penen <apenen@gmail.com>
pkgname=wscat
pkgver=5.2.0
pkgrel=1
pkgdesc="Netcat-like utility for WebSockets"
url="https://github.com/websockets/wscat"
arch=("x86_64" "i686")
license=("MIT")
depends=("nodejs")
makedepends=("npm")

package() {
    export npm_config_prefix="${pkgdir}/usr"
    npm install -g wscat@${pkgver}
}