summaryrefslogtreecommitdiff
path: root/community/nodejs/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/nodejs/PKGBUILD')
-rw-r--r--community/nodejs/PKGBUILD58
1 files changed, 58 insertions, 0 deletions
diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD
new file mode 100644
index 000000000..8c368df2c
--- /dev/null
+++ b/community/nodejs/PKGBUILD
@@ -0,0 +1,58 @@
+# Maintainer: Thomas Dziedzic < gostrc at gmail >
+# 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>
+
+pkgname=nodejs
+pkgver=0.4.9
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('python2')
+makedepends=('curl') # curl used for check()
+optdepends=('openssl: TLS support')
+conflicts=('nodejs-unstable')
+source=("http://nodejs.org/dist/node-v${pkgver}.tar.gz")
+sha256sums=('f231ea6d19ea9ea4c7f8e7ff5061e7d301f1635bec7ed0ff1eef2512576ea442')
+
+build() {
+ cd node-v${pkgver}
+
+ # python2 fix
+ for file in $(find . -name '*.py' -print) wscript tools/waf-light tools/node-waf
+ do
+ sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' ${file}
+ sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' ${file}
+ done
+ sed -i "s|cmd_R = 'python |cmd_R = 'python2 |" wscript
+ sed -i "s|python |python2 |" Makefile
+
+ ./configure \
+ --prefix=/usr
+
+ make
+}
+
+check() {
+ cd node-v${pkgver}
+
+ # only 1 test should fail afaik
+ # === release test-http-dns-fail ===
+ # https://github.com/joyent/node/issues/703
+ make test || true
+}
+
+package() {
+ cd node-v${pkgver}
+
+ make DESTDIR=${pkgdir} install
+
+ install -D -m644 LICENSE \
+ ${pkgdir}/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et: