mirror of https://github.com/nodejs/node.git
build: fix .pkg creation tooling
PR-URL: https://github.com/nodejs/node/pull/2687 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
parent
88505bdbd2
commit
d65106e307
2
Makefile
2
Makefile
|
@ -338,7 +338,7 @@ $(PKG): release-only
|
||||||
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
||||||
> tools/osx-pkg.pmdoc/index.xml
|
> tools/osx-pkg.pmdoc/index.xml
|
||||||
$(PACKAGEMAKER) \
|
$(PACKAGEMAKER) \
|
||||||
--id "org.node.pkg" \
|
--id "org.nodejs.pkg" \
|
||||||
--doc tools/osx-pkg.pmdoc \
|
--doc tools/osx-pkg.pmdoc \
|
||||||
--out $(PKG)
|
--out $(PKG)
|
||||||
SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh
|
SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<pkgref spec="1.12" uuid="053587FE-BDF3-4EF5-815D-281427431048">
|
<pkgref spec="1.12" uuid="053587FE-BDF3-4EF5-815D-281427431048">
|
||||||
<config>
|
<config>
|
||||||
<identifier>org.iojs.iojs.pkg</identifier>
|
<identifier>org.nodejs.node.pkg</identifier>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<description></description>
|
<description></description>
|
||||||
<post-install type="none"/>
|
<post-install type="none"/>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<pkgref spec="1.12" uuid="DF0233A3-6B5D-4FBF-8048-8FC57F42278F">
|
<pkgref spec="1.12" uuid="DF0233A3-6B5D-4FBF-8048-8FC57F42278F">
|
||||||
<config>
|
<config>
|
||||||
<identifier>org.node.npm.pkg</identifier>
|
<identifier>org.nodejs.npm.pkg</identifier>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<description></description>
|
<description></description>
|
||||||
<post-install type="none"/>
|
<post-install type="none"/>
|
||||||
|
|
|
@ -13,10 +13,10 @@
|
||||||
</distribution>
|
</distribution>
|
||||||
<contents>
|
<contents>
|
||||||
<choice title="Node.js" id="choice1" starts_selected="true" starts_enabled="true" starts_hidden="false">
|
<choice title="Node.js" id="choice1" starts_selected="true" starts_enabled="true" starts_hidden="false">
|
||||||
<pkgref id="org.nodejs.pkg"/>
|
<pkgref id="org.nodejs.node.pkg"/>
|
||||||
</choice>
|
</choice>
|
||||||
<choice title="npm" id="choice2" starts_selected="true" starts_enabled="true" starts_hidden="false">
|
<choice title="npm" id="choice2" starts_selected="true" starts_enabled="true" starts_hidden="false">
|
||||||
<pkgref id="org.nodejs.node.npm.pkg"/>
|
<pkgref id="org.nodejs.npm.pkg"/>
|
||||||
</choice>
|
</choice>
|
||||||
</contents>
|
</contents>
|
||||||
<resources bg-scale="none" bg-align="topleft">
|
<resources bg-scale="none" bg-align="topleft">
|
||||||
|
|
Loading…
Reference in New Issue