PKGBUILDs/community/nodejs/PKGBUILD

89 lines
2.7 KiB
Bash
Raw Normal View History

2014-09-28 13:07:04 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Thomas Dziedzic < gostrc at gmail >
2012-01-27 02:19:01 +00:00
# Contributor: James Campos <james.r.campos@gmail.com>
# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
# Contributor: Dongsheng Cai <dongsheng at moodle dot com>
# Contributor: Masutu Subric <masutu.arch at googlemail dot com>
# Contributor: TIanyi Cui <tianyicui@gmail.com>
2017-11-15 03:04:37 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - set config and gyp flags
2018-08-16 23:15:23 +00:00
# - patch to link libatomic for v6
2017-11-15 03:04:37 +00:00
buildarch=28
2012-01-27 02:19:01 +00:00
pkgname=nodejs
2018-09-20 21:21:40 +00:00
pkgver=10.11.0
2018-08-16 12:26:27 +00:00
pkgrel=1
2012-01-27 02:19:01 +00:00
pkgdesc='Evented I/O for V8 javascript'
2017-11-17 23:43:21 +00:00
arch=('x86_64')
2012-01-27 02:19:01 +00:00
url='http://nodejs.org/'
license=('MIT')
2018-04-28 14:59:14 +00:00
depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares' 'libnghttp2') # 'v8')
2017-04-24 19:11:39 +00:00
makedepends=('python2' 'procps-ng')
2015-05-08 12:43:59 +00:00
optdepends=('npm: nodejs package manager')
2018-08-16 23:15:23 +00:00
source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz"
'atomic.patch')
2018-09-20 21:21:40 +00:00
sha512sums=('6bf6e7f7375d468752b173faeaf7e769615c8a9d83420ed1fa0d9245dfe1117f5942a63ade3f9fb3c92ed2141eee1d31f8a00b2fc0644284a8da40e40d4b8cd8'
2018-08-16 23:15:23 +00:00
'fa6d8a03f397b170353cdf2ca6578b5173d1cbc1f588e404e5aab1e34c05d99ad4fe2f1cf28cbbeb3bf8b7563960f37f9469c312484bdbe41c20d6fe05121c95')
2013-02-20 15:12:21 +00:00
2013-05-15 14:33:50 +00:00
prepare() {
2017-04-24 19:11:39 +00:00
cd node-$pkgver
2012-01-27 02:19:01 +00:00
2015-09-16 18:41:44 +00:00
msg 'Fixing for python2 name'
find -type f -exec sed \
-e 's_^#!/usr/bin/env python$_&2_' \
-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
-e 's_^#!/usr/bin/python$_&2_' \
-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
-e "s_'python'_'python2'_" -i {} \;
find test/ -type f -exec sed 's_python _python2 _' -i {} \;
2018-08-16 23:15:23 +00:00
if [[ $CARCH == "armv6h" ]]; then
patch -p0 -i ../atomic.patch
fi
2013-05-15 14:33:50 +00:00
}
2015-04-04 04:39:00 +00:00
2013-05-15 14:33:50 +00:00
build() {
2017-04-24 19:11:39 +00:00
cd node-$pkgver
2012-01-27 02:19:01 +00:00
export PYTHON=python2
2017-11-15 03:04:37 +00:00
[[ "$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"
2012-02-05 02:06:11 +00:00
2012-01-27 02:19:01 +00:00
./configure \
--prefix=/usr \
2015-05-08 12:43:59 +00:00
--with-intl=system-icu \
--without-npm \
2015-02-15 19:15:29 +00:00
--shared-openssl \
2015-09-17 01:10:51 +00:00
--shared-zlib \
2015-10-13 12:11:28 +00:00
--shared-libuv \
--shared-http-parser \
2016-11-09 13:31:30 +00:00
--shared-cares \
2018-03-13 00:02:36 +00:00
--shared-nghttp2 \
2015-09-17 01:10:51 +00:00
${CONFIG}
2017-11-15 03:04:37 +00:00
# --shared-v8
2012-01-27 02:19:01 +00:00
2015-04-04 04:39:00 +00:00
make
2012-01-27 02:19:01 +00:00
}
check() {
2017-04-24 19:11:39 +00:00
cd node-$pkgver
2017-03-02 13:19:02 +00:00
# Expected failure: https://github.com/nodejs/node/issues/11627
make test || warning "Tests failed"
2012-01-27 02:19:01 +00:00
}
package() {
2017-04-24 19:11:39 +00:00
cd node-$pkgver
2012-01-27 02:19:01 +00:00
2017-11-15 03:04:37 +00:00
make DESTDIR="$pkgdir" install
2012-01-27 02:19:01 +00:00
install -D -m644 LICENSE \
2017-11-15 03:04:37 +00:00
"$pkgdir"/usr/share/licenses/nodejs/LICENSE
2012-01-27 02:19:01 +00:00
}
# vim:set ts=2 sw=2 et: