forked from 360Controller/360Controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·77 lines (76 loc) · 2.68 KB
/
Copy pathbuild.sh
File metadata and controls
executable file
·77 lines (76 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash
mkdir -p build
zip -r build/360ControllerSource.zip * -x "build*"
cd Feedback360
xcrun xcodebuild -configuration Deployment
if [ $? -ne 0 ]
then
echo "******** BUILD FAILED ********"
exit 1
fi
cd ../DriverTool
xcrun xcodebuild -configuration Release
if [ $? -ne 0 ]
then
echo "******** BUILD FAILED ********"
exit 1
fi
cd ../360Controller
xcrun xcodebuild -configuration Deployment
if [ $? -ne 0 ]
then
echo "******** BUILD FAILED ********"
exit 1
fi
cd ../360Daemon
xcrun xcodebuild -configuration Release
if [ $? -ne 0 ]
then
echo "******** BUILD FAILED ********"
exit 1
fi
cd ../WirelessGamingReceiver
xcrun xcodebuild -configuration Release
if [ $? -ne 0 ]
then
echo "******** BUILD FAILED ********"
exit 1
fi
cd ../Wireless360Controller
xcrun xcodebuild -configuration Release
if [ $? -ne 0 ]
then
echo "******** BUILD FAILED ********"
exit 1
fi
cd ../Pref360Control
xcrun xcodebuild -configuration Deployment
if [ $? -ne 0 ]
then
echo "******** BUILD FAILED ********"
exit 1
fi
cd ../Install360Controller
packagesbuild -v Install360Controller.pkgproj
mv build 360ControllerInstall
hdiutil create -srcfolder 360ControllerInstall -format UDZO ../build/360ControllerInstall.dmg
mv 360ControllerInstall build
cd ..
echo "** File contents **"
xcrun lipo -info 360Controller/build/Deployment/360Controller.kext/Contents/MacOS/360Controller
xcrun lipo -info 360Controller/build/Deployment/360Controller.kext/Contents/PlugIns/Feedback360.plugin/Contents/MacOS/Feedback360
xcrun lipo -info 360Daemon/build/Release/360Daemon
xcrun lipo -info Pref360Control/build/Deployment/Pref360Control.prefPane/Contents/MacOS/Pref360Control
xcrun lipo -info Pref360Control/build/Deployment/Pref360Control.prefPane/Contents/Resources/DriverTool
xcrun lipo -info WirelessGamingReceiver/build/Release/WirelessGamingReceiver.kext/Contents/MacOS/WirelessGamingReceiver
xcrun lipo -info Wireless360Controller/build/Release/Wireless360Controller.kext/Contents/MacOS/Wireless360Controller
echo "** File signatures **"
xcrun spctl -a -v 360Controller/build/Deployment/360Controller.kext
xcrun spctl -a -v 360Controller/build/Deployment/360Controller.kext/Contents/PlugIns/Feedback360.plugin
xcrun spctl -a -v 360Daemon/build/Release/360Daemon
xcrun spctl -a -v Pref360Control/build/Deployment/Pref360Control.prefPane
xcrun spctl -a -v Pref360Control/build/Deployment/Pref360Control.prefPane/Contents/Resources/DriverTool
xcrun spctl -a -v WirelessGamingReceiver/build/Release/WirelessGamingReceiver.kext
xcrun spctl -a -v Wireless360Controller/build/Release/Wireless360Controller.kext
xcrun spctl -a -v --type install Install360Controller/build/Install360Controller.pkg
echo "*** DONE ***"