--- setup.py.orig	2011-02-25 12:29:21.000000000 +0800
+++ setup.py	2011-02-25 13:28:06.000000000 +0800
@@ -39,8 +39,9 @@
     description="Cross-platform Python Bluetooth library for Mac OS X, GNU/Linux and Python for Series 60.",
     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.",
     license="GPL",
-    packages=["lightblue"],
-    package_dir={"lightblue":getpackagedir()},
+    packages=["lightblue","LightAquaBlue"],
+    package_dir={"lightblue":getpackagedir(), "LightAquaBlue":"%s/LightAquaBlue" % getpackagedir()},
+    package_data={"lightblue":[ ], "LightAquaBlue":["LightAquaBlue.bridgesupport"]},
     ext_modules=getextensions(),
     classifiers = [ "Development Status :: 3 - Alpha",
         "Intended Audience :: Developers",
@@ -62,5 +63,5 @@
 if MAC:
     if "install" in sys.argv:
         import os
-        os.chdir("src/mac/LightAquaBlue")
+        os.chdir("src/mac/LightAquaBlue-xcode")
         os.system("xcodebuild install -target LightAquaBlue -configuration Release DSTROOT=/ INSTALL_PATH=/Library/Frameworks DEPLOYMENT_LOCATION=YES")