# Maintainer: Felix Yan # Contributor Bartłomiej Piotrowski # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: James Campos # Contributor: BlackEagle < ike DOT devolder AT gmail DOT com > # Contributor: Dongsheng Cai # Contributor: Masutu Subric # Contributor: TIanyi Cui # ALARM: Kevin Mihelich # - set config and gyp flags # - patch to link libatomic for v6 buildarch=28 pkgname=nodejs pkgver=13.6.0 pkgrel=1 pkgdesc='Evented I/O for V8 javascript' arch=('x86_64') url='https://nodejs.org/' license=('MIT') depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 'v8') makedepends=('python' 'procps-ng') optdepends=('npm: nodejs package manager') source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz" 'atomic.patch') sha512sums=('bee2ca82a4aa18cbeb0fbe1b798747a99ea9ee4d5376e06df54d7e0a7a2a98abef7db09dcfda69b8dbd1d2d8ec05af5233279cb57dcb31279aeb894dee0e1614' '3d7378b80a9729f5dd5c6c7446531244a67bd6021ccf6feb270af2b698d9bd2ff3c6bf84f8d0a6eb3671c59ea920de8ec081cac0b705236b474b61427f5c1e39') prepare() { cd node-$pkgver if [[ $CARCH == "armv6h" ]]; then patch -p0 -i ../atomic.patch fi } build() { cd node-$pkgver [[ "$CARCH" == "armv6h" ]] && export CONFIG="--with-arm-float-abi=hard --with-arm-fpu=vfp" && export GYPFLAGS="-Darm_thumb -Darm_float_abi=hard -Darm_version=6 -Darm_fpu=vfpv2" [[ "$CARCH" == "armv7h" ]] && export CONFIG="--with-arm-float-abi=hard --with-arm-fpu=vfpv3-d16" && export GYPFLAGS="-Darm_thumb -Darm_float_abi=hard -Darm_version=7 -Darm_fpu=vfpv3-d16" ./configure \ --prefix=/usr \ --with-intl=system-icu \ --without-npm \ --shared-openssl \ --shared-zlib \ --shared-libuv \ --experimental-http-parser \ --shared-cares \ --shared-nghttp2 \ ${CONFIG} # --shared-v8 # --shared-http-parser make } check() { cd node-$pkgver # Expected failure: https://github.com/nodejs/node/issues/11627 make test || warning "Tests failed" } package() { cd node-$pkgver make DESTDIR="$pkgdir" install install -D -m644 LICENSE \ "$pkgdir"/usr/share/licenses/nodejs/LICENSE } # vim:set ts=2 sw=2 et: