# Maintainer: Jamie Magee _npmname=azurite _npmver=2.7.1 pkgname=nodejs-azurite pkgver=2.7.1 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) b2sums=('a44c6ddce847f9ec1578aae694ee3434ba66106f66665a23de75e99522feb30993c350866c3412aae1b109f3d002a62e232d5abb0af28d25ec49fbfc986c74ce') 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 {} + }