Same exact problem as bugzilla. Follow instructions to install 0.99.1 from scratch; template libs copy fine, but template files don't.
- Untar the zip to /Developer/Library/
- In terminal, went to /Developer/Library/cocos2d-iphone-0.99.1/
Output:
$ ./install_template.sh
cocos2d-iphone template installer
Installing cocos2d template
---------------------------
Template dir: /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates/Application/
...creating destination directory: /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates/Application/cocos2d-0.99.1 Application/
...copying template files
cp: templates/cocos2d_app/: No such file or directory
...copying cocos2d files
...copying cocos2d dependency files
...copying CocosDenshion files
...copying cocoslive files
...copying cocoslive dependency files
done!
Installing cocos2d + box2d template
-----------------------------------
...creating destination directory: /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates/Application/cocos2d-0.99.1 Box2d Application/
...copying template files
cp: templates/cocos2d_box2d_app/: No such file or directory
...copying cocos2d files
...copying cocos2d dependency files
...copying CocosDenshion files
...copying cocoslive files
...copying cocoslive dependency files
...copying Box2D files
done!
Installing cocos2d + chipmunk template
--------------------------------------
...creating destination directory: /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates/Application/cocos2d-0.99.1 Chipmunk Application/
...copying template files
cp: templates/cocos2d_chipmunk_app/: No such file or directory
...copying cocos2d files
...copying cocos2d dependency files
...copying CocosDenshion files
...copying cocoslive files
...copying cocoslive dependency files
...copying Chipmunk files
done!
--> Notice the following:
cp: templates/cocos2d_app/: No such file or directory
cp: templates/cocos2d_box2d_app/: No such file or directory
cp: templates/cocos2d_chipmunk_app/: No such file or directory
Only the libs files are properly copied; none of the template project files went. After copying those manually, you can create a new project using any of the templates. The cocos2d_app template gives you a build with 94 errors. Updating the header search path to include (recursively) /Developer/Library/cocos2d-iphone-0.99.1/ cuts the error count down to 67.
Trouble starts when the compiler gets to CCAction. FontLabel through SimpleAudioEngine are fine. Probably missing a lib here. Ideas?
Will update if I solve it. PS I love Cocos2d.