diff options
author | Rafael Baboni Dominiquini | 2024-10-23 01:16:00 -0300 |
---|---|---|
committer | Rafael Baboni Dominiquini | 2024-10-23 01:16:00 -0300 |
commit | eec7eeaad0ff3249894400d24d073a7e82c11802 (patch) | |
tree | 20489ce18a656d354c19ad341bd62193ded764dc | |
parent | 91d034ac1d3ae8b4f16944e916a270799daab891 (diff) | |
download | aur-eec7eeaad0ff3249894400d24d073a7e82c11802.tar.gz |
Update to 9.0.1
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 7 insertions, 9 deletions
@@ -1,14 +1,14 @@ pkgbase = nodejs-concurrently pkgdesc = Run multiple commands concurrently - pkgver = 8.2.1 + pkgver = 9.0.1 pkgrel = 1 url = https://github.com/open-cli-tools/concurrently arch = any license = MIT makedepends = npm depends = nodejs - noextract = concurrently-8.2.1.tgz - source = http://registry.npmjs.org/concurrently/-/concurrently-8.2.1.tgz - sha256sums = e02f99dc2aee4fe71e240290b7927e0f814c6a45aba6e601d435d4663ac819f1 + noextract = concurrently-9.0.1.tgz + source = http://registry.npmjs.org/concurrently/-/concurrently-9.0.1.tgz + sha256sums = c9f5d8cfb813ab049e1e01f10719832049b6f00e4df3658da27590f43f185fb9 pkgname = nodejs-concurrently @@ -1,9 +1,8 @@ -# Author: Christoph Brill <aur@christophbrill.de> +# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dor com> _npmname=concurrently - pkgname=nodejs-concurrently -pkgver=8.2.1 +pkgver=9.0.1 pkgrel=1 pkgdesc="Run multiple commands concurrently" arch=(any) @@ -13,7 +12,7 @@ depends=('nodejs') makedepends=('npm') source=(http://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz) noextract=($_npmname-$pkgver.tgz) -sha256sums=('e02f99dc2aee4fe71e240290b7927e0f814c6a45aba6e601d435d4663ac819f1') +sha256sums=('c9f5d8cfb813ab049e1e01f10719832049b6f00e4df3658da27590f43f185fb9') package() { npm install -g --user root --prefix "$pkgdir/usr" "$srcdir/$_npmname-$pkgver.tgz" @@ -24,4 +23,3 @@ package() { # Fix permissions find "$pkgdir/usr" -type d -exec chmod 755 {} \; } - |