# Maintainer: Rafael Ascensão _npmname='@google/clasp' pkgname="nodejs-google-clasp" pkgver=2.2.1 pkgrel=1 pkgdesc='Develop Apps Script Projects locally' arch=('any') url='https://github.com/google/clasp' license=('Apache') depends=('nodejs') makedepends=('npm') optdepends=('typescript: autocompletion and linting') source=("https://registry.npmjs.org/$_npmname/-/${_npmname##*/}-$pkgver.tgz") noextract=("${_npmname##*/}-$pkgver.tgz") sha256sums=('971a7eca0e17599e4659e3344b1e8c9f2343cb181d7843ea8a6f9a42249c2809') package() { cd $srcdir npm install -g --user root --prefix "$pkgdir"/usr "${_npmname##*/}-$pkgver.tgz" # Non-deterministic race in npm gives 777 permissions to random directories. # See https://github.com/npm/npm/issues/9359 for details. find "${pkgdir}"/usr -type d -exec chmod 755 {} + # Rename command because clasp from [community] has /usr/bin/clasp mv "${pkgdir}"/usr/bin/{,g}clasp }