addpkg: firebase-tools

This commit is contained in:
MedzikUser 2022-05-29 13:49:35 +02:00
parent aeaffc7218
commit 7bcc2ba4fb
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# Maintainer: MedzikUser <nivua1fn@duck.com>
pkgname='firebase-tools'
pkgver="11.0.1"
pkgrel=1
pkgdesc='The Firebase Command Line Tools'
arch=('any')
url="https://www.npmjs.com/package/${pkgname}"
license=('MIT')
depends=('nodejs')
makedepends=('npm')
_file="${pkgname}-${pkgver}.tgz"
source=("https://registry.npmjs.org/${pkgname}/-/${_file}")
noextract=("${_file}")
sha256sums=('SKIP')
package() {
npm install -g --prefix "${pkgdir}/usr" "${_file}"
# Non-deterministic race in npm gives 777 permissions to random directories.
# See https://github.com/npm/npm/issues/9359 for details.
chmod -R u=rwX,go=rX "${pkgdir}"
# npm installs package.json owned by build user
# https://bugs.archlinux.org/task/63396
chown -R root:root "${pkgdir}"
}

View File

@ -0,0 +1 @@
NPM="firebase-tools"