packages/packages/aws-cdk/PKGBUILD

27 lines
822 B
Bash
Raw Permalink Normal View History

2022-05-22 16:16:48 +00:00
# Maintainer: MedzikUser <nivua1fn@duck.com>
pkgname='aws-cdk'
2023-08-04 21:11:41 +00:00
pkgver="2.90.0"
2022-05-22 16:16:48 +00:00
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}")
2023-08-04 21:11:41 +00:00
sha256sums=('625492bd9e378f57da9f711ae080cecdc49bac07d1a96d01af020484cc0cc1b3')
2022-05-22 16:16:48 +00:00
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}"
}