You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
6155aad664
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@91367 d073be05-634f-4543-b044-5fe20cf6d1d6
22 lines
1.4 KiB
Diff
22 lines
1.4 KiB
Diff
--- 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")
|