Ticket #27033: patch-setup.py.diff
File patch-setup.py.diff, 1.4 KB (added by tcwan (TC Wan), 14 years ago) |
---|
-
setup.py
old new 39 39 description="Cross-platform Python Bluetooth library for Mac OS X, GNU/Linux and Python for Series 60.", 40 40 long_description="LightBlue is a cross-platform Python Bluetooth library for Mac OS X, GNU/Linux and Python for Series 60. It provides support for device and service discovery (with and without end-user GUIs), a standard socket interface for RFCOMM sockets, sending and receiving of files over OBEX, advertising of RFCOMM and OBEX services, and access to local device information.", 41 41 license="GPL", 42 packages=["lightblue"], 43 package_dir={"lightblue":getpackagedir()}, 42 packages=["lightblue","LightAquaBlue"], 43 package_dir={"lightblue":getpackagedir(), "LightAquaBlue":"%s/LightAquaBlue" % getpackagedir()}, 44 package_data={"lightblue":[ ], "LightAquaBlue":["LightAquaBlue.bridgesupport"]}, 44 45 ext_modules=getextensions(), 45 46 classifiers = [ "Development Status :: 3 - Alpha", 46 47 "Intended Audience :: Developers", … … 62 63 if MAC: 63 64 if "install" in sys.argv: 64 65 import os 65 os.chdir("src/mac/LightAquaBlue ")66 os.chdir("src/mac/LightAquaBlue-xcode") 66 67 os.system("xcodebuild install -target LightAquaBlue -configuration Release DSTROOT=/ INSTALL_PATH=/Library/Frameworks DEPLOYMENT_LOCATION=YES")