summaryrefslogtreecommitdiff
path: root/community/nodejs
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-01 10:50:46 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-01 10:50:46 -0300
commit3aff11a8581ae7e5a8ccea02062cd92f873c44c5 (patch)
tree05623159a5ae88f6eed2414db216bc9a0d2d71c5 /community/nodejs
parentd4157e6db6dd7e03802aa9c361a1902e81c2545a (diff)
parent9b6be78b0c13a61c14d5278f1363eaf9c6388e4c (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/geany/PKGBUILD community/linux-tools/PKGBUILD community/linux-tools/cpupower.conf community/linux-tools/cpupower.rc community/stk/PKGBUILD core/patch/PKGBUILD core/systemd/PKGBUILD extra/lftp/PKGBUILD extra/lftp/lftp-4.3.8-gets.patch extra/mysql/PKGBUILD extra/qt/PKGBUILD extra/transmission/PKGBUILD gnome-unstable/gcr/PKGBUILD gnome-unstable/glibmm/PKGBUILD gnome-unstable/gnome-session/PKGBUILD gnome-unstable/libgdata/PKGBUILD gnome-unstable/libgnome-keyring/PKGBUILD gnome-unstable/pango/PKGBUILD gnome-unstable/polkit/PKGBUILD gnome-unstable/telepathy-glib/PKGBUILD libre/linux-libre/PKGBUILD multilib/lib32-libphobos-ldc/PKGBUILD multilib/wine/PKGBUILD testing/dbus-core/PKGBUILD testing/dbus/PKGBUILD testing/libusbx/PKGBUILD testing/systemd/PKGBUILD testing/xf86-video-intel/PKGBUILD
Diffstat (limited to 'community/nodejs')
-rw-r--r--community/nodejs/PKGBUILD16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD
index 0939a556a..7a2b51408 100644
--- a/community/nodejs/PKGBUILD
+++ b/community/nodejs/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 76180 2012-09-12 17:56:42Z bpiotrowski $
+# $Id: PKGBUILD 76757 2012-09-29 07:00:16Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: James Campos <james.r.campos@gmail.com>
@@ -8,7 +8,7 @@
# Contributor: TIanyi Cui <tianyicui@gmail.com>
pkgname=nodejs
-pkgver=0.8.9
+pkgver=0.8.11
pkgrel=1
pkgdesc='Evented I/O for V8 javascript'
arch=('i686' 'x86_64' 'mips64el')
@@ -17,8 +17,8 @@ license=('MIT')
depends=('openssl' 'python2') #'v8')
checkdepends=('curl') # curl used for check()
options=('!emptydirs')
-source=("http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz")
-md5sums=('5470b3951a3b2684cfa71027801bd19d')
+source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz)
+md5sums=('23cb6d6a5c3949ac73df3c6b330e834d')
build() {
cd node-v${pkgver}
@@ -48,15 +48,15 @@ check() {
package() {
cd node-v${pkgver}
- make DESTDIR=${pkgdir} install
+ make DESTDIR=$pkgdir install
# install docs as per user request
- install -d ${pkgdir}/usr/share/doc/nodejs
+ install -d $pkgdir/usr/share/doc/nodejs
cp -r doc/api/*.html \
- ${pkgdir}/usr/share/doc/nodejs
+ $pkgdir/usr/share/doc/nodejs
install -D -m644 LICENSE \
- ${pkgdir}/usr/share/licenses/nodejs/LICENSE
+ $pkgdir/usr/share/licenses/nodejs/LICENSE
}
# vim:set ts=2 sw=2 et: