# Maintainer: Jamie Magee _npmname=azurite _npmver=2.7.0 pkgname=nodejs-azurite pkgver=2.7.0 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-$_npmver.tgz) noextract=($_npmname-$_npmver.tgz) sha256sums=('2a24c3105b8da19649b2d4b8edfb09cabdbad994f6a9307b131e872cdea24d18') package() { cd "$srcdir" local _npmdir="$pkgdir/usr/lib/node_modules/" mkdir -p "$_npmdir" cd "$_npmdir" npm install --user root -g --prefix "$pkgdir/usr" $_npmname@$_npmver # 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 {} + }