# Maintainer: Kirill Goncharov pkgname=mermaid-cli pkgver=8.5.1 pkgrel=1 pkgdesc='Generation of diagram and flowchart from text in a similar manner as markdown (CLI)' arch=('any') url='https://github.com/mermaid-js/mermaid-cli' license=('MIT') makedepends=('nodejs' 'npm') _npmscope=@mermaid-js _npmname=mermaid-cli _npmver=8.5.1-2 source=("http://registry.npmjs.org/${_npmscope}/${_npmname}/-/${_npmname}-${_npmver}.tgz") sha256sums=('d5152bedbf37068d1e6a35e3c4317a31d9d223b77836312da1b992ba3918fd91') noextract=('${_npmname}-${_npmver}.tgz') package() { npm install --global --production --user root --prefix "${pkgdir}/usr" "${_npmname}-${_npmver}.tgz" # -> https://wiki.archlinux.org/index.php/Node.js_package_guidelines # 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 {} + # npm gives ownership of ALL FILES to build user # https://bugs.archlinux.org/task/63396 chown -R root:root "$pkgdir" }