packages/packages/aws-cdk/PKGBUILD

27 lines
822 B
Bash

# Maintainer: MedzikUser <nivua1fn@duck.com>
pkgname='aws-cdk'
pkgver="2.63.0"
pkgrel=1
pkgdesc='CDK Toolkit, the command line tool for CDK app'
arch=('any')
url="https://github.com/awslabs/aws-cdk"
license=('Apache')
depends=('nodejs')
makedepends=('npm')
_file="${pkgname}-${pkgver}.tgz"
source=("https://registry.npmjs.org/${pkgname}/-/${_file}")
noextract=("${_file}")
sha256sums=('f4f7cdb419abf4fc210bb3aaaed6abdb546678db4680e6f4bb703af32134222d')
package() {
npm install -g --prefix "${pkgdir}/usr" "${_file}"
# Non-deterministic race in npm gives 777 permissions to random directories.
# See https://github.com/npm/npm/issues/9359 for details.
chmod -R u=rwX,go=rX "${pkgdir}"
# npm installs package.json owned by build user
# https://bugs.archlinux.org/task/63396
chown -R root:root "${pkgdir}"
}