forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d13fcf
commit f1b878c
Showing
3 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,7 +207,8 @@ docopen: out/doc/api/all.html | |
docclean: | ||
-rm -rf out/doc | ||
|
||
VERSION=v$(shell $(PYTHON) tools/getnodeversion.py) | ||
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py) | ||
VERSION=v$(RAWVER) | ||
RELEASE=$(shell $(PYTHON) tools/getnodeisrelease.py) | ||
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]') | ||
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64) | ||
|
@@ -235,6 +236,11 @@ BINARYTAR=$(BINARYNAME).tar.gz | |
PKG=out/$(TARNAME).pkg | ||
packagemaker=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker | ||
|
||
PKGSRC=nodejs-$(DESTCPU)-$(RAWVER).tgz | ||
ifdef NIGHTLY | ||
PKGSRC=nodejs-$(DESTCPU)-$(RAWVER)-$(TAG).tgz | ||
endif | ||
|
||
dist: doc $(TARBALL) $(PKG) | ||
|
||
PKGDIR=out/dist-osx | ||
|
@@ -312,6 +318,19 @@ $(BINARYTAR): release-only | |
|
||
binary: $(BINARYTAR) | ||
|
||
$(PKGSRC): release-only | ||
rm -rf dist out | ||
$(PYTHON) configure --prefix=/ --without-snapshot \ | ||
--dest-cpu=$(DESTCPU) --tag=$(TAG) $(CONFIG_FLAGS) | ||
$(MAKE) install DESTDIR=dist | ||
(cd dist; find * -type f | sort) > packlist | ||
pkg_info -X pkg_install | \ | ||
egrep '^(MACHINE_ARCH|OPSYS|OS_VERSION|PKGTOOLS_VERSION)' > build-info | ||
pkg_create -B build-info -c tools/pkgsrc/comment -d tools/pkgsrc/description \ | ||
-f packlist -I /opt/local -p dist -U $(PKGSRC) | ||
|
||
pkgsrc: $(PKGSRC) | ||
|
||
dist-upload: $(TARBALL) $(PKG) | ||
ssh [email protected] mkdir -p web/nodejs.org/dist/$(VERSION) | ||
scp $(TARBALL) [email protected]:~/web/nodejs.org/dist/$(VERSION)/$(TARBALL) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
V8 JavaScript for clients and servers (nodejs.org package) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Node.js is an evented I/O framework for the V8 JavaScript engine. It is | ||
intended for writing scalable network programs such as web servers. | ||
|
||
Packaged by nodejs.org | ||
|
||
Homepage: | ||
http://nodejs.org/ |