diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-03 06:19:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-03 06:19:04 +0000 |
commit | 6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07 (patch) | |
tree | 1f70b259fe7fb5c82f437c6b006284893cf4eb5a /testing/nodejs/APKBUILD | |
parent | 66765c30ac7a9c9a560ab43d5618de820fb373c6 (diff) | |
download | aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.bz2 aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.xz |
testing/*: removed
We dont ship testing things in a stable release
Diffstat (limited to 'testing/nodejs/APKBUILD')
-rw-r--r-- | testing/nodejs/APKBUILD | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/testing/nodejs/APKBUILD b/testing/nodejs/APKBUILD deleted file mode 100644 index fe5acb8e03..0000000000 --- a/testing/nodejs/APKBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# Contributor: William Pitcock <nenolod@dereferenced.org> -# Maintainer: -pkgname=nodejs -pkgver=0.4.2 -pkgrel=0 -pkgdesc="event-oriented javascript framework and execution environment" -url="http://nodejs.org/" - -# v8 is not portable so we have to list archs by hand -arch="x86 x86_64 arm" - -license="MIT BSD Apache-2" -depends= -depends_dev= -makedepends="$depends_dev python libev-dev c-ares-dev openssl-dev" -install="" -subpackages="$pkgname-dev $pkgname-doc" -source="http://nodejs.org/dist/node-v${pkgver}.tar.gz - nodejs-uclibc.patch - nodejs-multiplicity.patch" - -_builddir="${srcdir}/node-v${pkgver}" -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr \ - --shared-cares \ - --shared-libev - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 -} - -md5sums="9e9e791e125f6a601ebc663dc99c72a8 node-v0.4.2.tar.gz -b5d7568f58bb9a14d5b9a971e89560c6 nodejs-uclibc.patch -912d504d56fb194b4ceda8f693f6e200 nodejs-multiplicity.patch" |