# Maintainer: Jamie Magee _npmname=azurite pkgname=nodejs-azurite pkgver=3.18.0 # renovate: datasource=github-tags depName=Azure/Azurite pkgrel=1 pkgdesc="A lightweight server clone of Azure Storage that simulates most of the commands supported by it with minimal dependencies" arch=(any) url="https://github.com/azure/azurite" license=(MIT) depends=('nodejs' 'npm') optdepends=() source=(https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz) noextract=($_npmname-$pkgver.tgz) b2sums=('857d160cf964b2f1f4500098cf09d82826fb1738746fe2f481f4695ebdafc2bc4822ebd819b7d245ca789c26f174a188ff2f734ab120870babbab7ac5d963095') package() { cd "$srcdir" local _npmdir="$pkgdir/usr/lib/node_modules/" mkdir -p "$_npmdir" cd "$_npmdir" npm install --user root -g --prefix "$pkgdir/usr" $_npmname@$pkgver # 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 {} + }