PKGBUILDs/community/nodejs/PKGBUILD

74 lines
2.1 KiB
Bash
Raw Normal View History

2012-01-27 02:19:01 +00:00
# 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>
# Contributor: Jason Plum <max@warheads.net>
pkgname=nodejs
2012-07-25 19:57:22 +00:00
pkgver=0.8.4
pkgrel=1
2012-01-27 02:19:01 +00:00
pkgdesc='Evented I/O for V8 javascript'
arch=('i686' 'x86_64' 'arm')
2012-01-27 02:19:01 +00:00
url='http://nodejs.org/'
license=('MIT')
depends=('python2' 'v8')
2012-01-27 02:19:01 +00:00
checkdepends=('curl') # curl used for check()
optdepends=('openssl: TLS support')
options=('!emptydirs')
source=("http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz")
2012-07-25 20:23:44 +00:00
md5sums=('ea44c0fa7a5f268bedfbea0ae1884db5')
2012-01-27 02:19:01 +00:00
build() {
cd node-v${pkgver}
2012-07-20 14:41:16 +00:00
# fs#30766
sed -i "s|var npmDir = path.resolve(node_prefix, 'lib/node_modules/npm');|var npmDir = path.join(dest_dir, node_prefix, 'lib/node_modules/npm');|" tools/installer.js
2012-01-27 02:19:01 +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_'python'_'python2'_" -i {} \;
find test -type f -exec sed -e "s|python |python2 |" -i {} \;
sed -i "s|python |python2 |" Makefile
export PYTHON=python2
2012-02-05 02:06:11 +00:00
# we're going to attept to make use of this example
# https://github.com/joyent/node/issues/2131#issuecomment-3208846
# https://gist.github.com/1574158
2012-02-05 02:06:11 +00:00
2012-01-27 02:19:01 +00:00
./configure \
--prefix=/usr \
2012-07-17 13:39:31 +00:00
--shared-openssl \
--shared-v8 \
--shared-v8-libpath=/usr/lib \
--shared-v8-includes=/usr/include \
--without-snapshot
2012-01-27 02:19:01 +00:00
make
}
check() {
cd node-v${pkgver}
make test || true
}
package() {
cd node-v${pkgver}
make DESTDIR=${pkgdir} install
# install docs as per user request
install -d ${pkgdir}/usr/share/doc/nodejs
2012-06-07 12:48:06 +00:00
cp -r doc/api/* \
2012-01-27 02:19:01 +00:00
${pkgdir}/usr/share/doc/nodejs
2012-07-17 13:39:31 +00:00
# compress man pages
find $pkgdir/usr/lib/node_modules/npm/man -type f | xargs gzip -9
2012-01-27 02:19:01 +00:00
install -D -m644 LICENSE \
${pkgdir}/usr/share/licenses/nodejs/LICENSE
}
# vim:set ts=2 sw=2 et: