mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
treewide: change install references for xcbuild
now build directory is "Products/Release/"
This commit is contained in:
parent
7c1e39746d
commit
65562e4cdd
@ -34,7 +34,7 @@ appleDerivation {
|
||||
# temporary install phase until xcodebuild has "install" support
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin/
|
||||
install adv_cmds-*/Build/Products/Release/* $out/bin/
|
||||
install Products/Release/* $out/bin/
|
||||
|
||||
for n in 1 8; do
|
||||
mkdir -p $out/share/man/man$n
|
||||
|
@ -14,7 +14,7 @@ appleDerivation rec {
|
||||
# temporary install phase until xcodebuild has "install" support
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin/
|
||||
install basic_cmds-*/Build/Products/Release/* $out/bin/
|
||||
install Products/Release/* $out/bin/
|
||||
|
||||
for n in 1; do
|
||||
mkdir -p $out/share/man/man$n
|
||||
|
@ -11,7 +11,7 @@ appleDerivation rec {
|
||||
# temporary install phase until xcodebuild has "install" support
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin/
|
||||
install developer_cmds-*/Build/Products/Release/* $out/bin/
|
||||
install Products/Release/* $out/bin/
|
||||
|
||||
for n in 1; do
|
||||
mkdir -p $out/share/man/man$n
|
||||
|
@ -19,7 +19,7 @@ appleDerivation rec {
|
||||
# temporary install phase until xcodebuild has "install" support
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin/
|
||||
install file_cmds-*/Build/Products/Release/* $out/bin
|
||||
install Products/Release/* $out/bin
|
||||
|
||||
for n in 1; do
|
||||
mkdir -p $out/share/man/man$n
|
||||
|
@ -18,8 +18,8 @@ appleDerivation {
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib $out/include
|
||||
|
||||
cp libutil-*/Build/Products/Release/*.dylib $out/lib
|
||||
cp libutil-*/Build/Products/Release/*.h $out/include
|
||||
cp Products/Release/*.dylib $out/lib
|
||||
cp Products/Release/*.h $out/include
|
||||
|
||||
# TODO: figure out how to get this to be right the first time around
|
||||
install_name_tool -id $out/lib/libutil.dylib $out/lib/libutil.dylib
|
||||
|
@ -19,7 +19,7 @@ appleDerivation rec {
|
||||
# temporary install phase until xcodebuild has "install" support
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin/
|
||||
install network_cmds-*/Build/Products/Release/* $out/bin/
|
||||
install Products/Release/* $out/bin/
|
||||
|
||||
for n in 1 5; do
|
||||
mkdir -p $out/share/man/man$n
|
||||
|
@ -29,7 +29,7 @@ appleDerivation rec {
|
||||
# temporary install phase until xcodebuild has "install" support
|
||||
installPhase = ''
|
||||
mkdir -p $out/usr/bin
|
||||
install shell_cmds-*/Build/Products/Release/* $out/usr/bin
|
||||
install Products/Release/* $out/usr/bin
|
||||
|
||||
export DSTROOT=$out
|
||||
export SRCROOT=$PWD
|
||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp ./contacts-*/Build/Products/Default/contacts $out/bin
|
||||
cp Products/Default/contacts $out/bin
|
||||
'';
|
||||
|
||||
## FIXME: the framework setup hook isn't adding these correctly
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/Applications
|
||||
mv pinentry-mac-*/Build/Products/Release/pinentry-mac.app $out/Applications
|
||||
mv Products/Release/pinentry-mac.app $out/Applications
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
|
Loading…
Reference in New Issue
Block a user