mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-01 06:42:01 +01:00
57 lines
1.7 KiB
Plaintext
57 lines
1.7 KiB
Plaintext
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
|
# Contributor: Jose-Luis Rivas <ghostbar@riseup.net>
|
|
# Maintainer: Eivind Uggedal <eivind@uggedal.com>
|
|
pkgname=nodejs-lts
|
|
pkgver=4.4.3
|
|
pkgrel=0
|
|
pkgdesc='Evented I/O for V8 javascript'
|
|
url='http://nodejs.org/'
|
|
arch='all'
|
|
license='MIT'
|
|
# gold is needed for mksnapshot
|
|
makedepends="$depends_dev python openssl-dev zlib-dev libuv-dev
|
|
linux-headers paxmark binutils-gold"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
replaces="nodejs"
|
|
source="https://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz"
|
|
_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-zlib \
|
|
--shared-libuv \
|
|
--shared-openssl \
|
|
|| return 1
|
|
# we need run mksnapshot at build time so paxmark it early
|
|
make -C out mksnapshot BUILDTYPE=Release \
|
|
&& paxmark -m out/Release/mksnapshot \
|
|
&& make || return 1
|
|
}
|
|
|
|
package() {
|
|
local d
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
# paxmark so JIT works
|
|
paxmark -m "$pkgdir"/usr/bin/node || return 1
|
|
|
|
cp -pr "$pkgdir"/usr/lib/node_modules/npm/man "$pkgdir"/usr/share || return 1
|
|
for d in doc html man; do
|
|
rm -r "$pkgdir"/usr/lib/node_modules/npm/$d || return 1
|
|
done
|
|
}
|
|
md5sums="0f7feafa6a98af58fcd934c043ced0d5 node-v4.4.3.tar.gz"
|
|
sha256sums="8e67b95721aab7bd721179da2fe5dd97f9acc1306c15c9712ee103bcd6381638 node-v4.4.3.tar.gz"
|
|
sha512sums="dd4148b3db95ee9de422bbf3bd3f9c7d8c15868af063016a131fec36dd2023f5bb30fc40b46bc3431ade9a118679d4defa788372a431fade334d3a1599f26610 node-v4.4.3.tar.gz"
|