summaryrefslogtreecommitdiff
path: root/community/nodejs/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-09-30 01:25:00 -0700
committerroot <root@rshg054.dnsready.net>2012-09-30 01:25:00 -0700
commit75826a796a4589c1999f1b3b86eb8c122ef44edd (patch)
tree5a5d447af9ccc76d5aeba1f75ff063b405ab9489 /community/nodejs/PKGBUILD
parentb004f93f171149c5a53d464819b9d0197f1d783e (diff)
Sun Sep 30 01:24:59 PDT 2012
Diffstat (limited to 'community/nodejs/PKGBUILD')
-rw-r--r--community/nodejs/PKGBUILD16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD
index 7234f166f..4dd77667e 100644
--- a/community/nodejs/PKGBUILD
+++ b/community/nodejs/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 76680 2012-09-26 13:50:57Z 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.10
+pkgver=0.8.11
pkgrel=1
pkgdesc='Evented I/O for V8 javascript'
arch=('i686' 'x86_64')
@@ -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=('e8d26670a4b0746b10e9f06e26e7f30d')
+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: