87 lines
3.3 KiB
Python
87 lines
3.3 KiB
Python
#!/usr/bin/env python
|
|
|
|
from distutils import sysconfig
|
|
from distutils.core import setup, Extension
|
|
import os
|
|
import platform
|
|
import sys
|
|
|
|
if '@BOOST_PYTHON_LIB@' == '':
|
|
print('You need to pass --enable-python-binding to configure in order '),
|
|
print('to properly use this setup. There is no boost.python library configured now')
|
|
sys.exit(1)
|
|
|
|
def parse_cmd(cmdline, prefix, keep_prefix = False):
|
|
ret = []
|
|
for token in cmdline.split():
|
|
if token[:len(prefix)] == prefix:
|
|
if keep_prefix:
|
|
ret.append(token)
|
|
else:
|
|
ret.append(token[len(prefix):])
|
|
return ret
|
|
|
|
def arch():
|
|
if platform.system() != 'Darwin': return []
|
|
a = os.uname()[4]
|
|
if a == 'Power Macintosh': a = 'ppc'
|
|
return ['-arch', a]
|
|
|
|
if platform.system() == 'Windows':
|
|
# on windows, build using bjam and build an installer
|
|
import shutil
|
|
# msvc 9.0 (2008) is the official windows compiler for python 2.6
|
|
# http://docs.python.org/whatsnew/2.6.html#build-and-c-api-changes
|
|
if os.system('bjam boost=source link=static geoip=static boost-link=static release msvc-9.0 optimization=space') != 0:
|
|
print('build failed')
|
|
sys.exit(1)
|
|
try: os.mkdir(r'build')
|
|
except: pass
|
|
try: os.mkdir(r'build\lib')
|
|
except: pass
|
|
try: os.mkdir(r'libtorrent')
|
|
except: pass
|
|
shutil.copyfile(r'bin\msvc-9.0\release\boost-source\geoip-static\link-static\optimization-space\threading-multi\libtorrent.pyd', r'.\build\lib\libtorrent.pyd')
|
|
setup( name='python-libtorrent',
|
|
version='@PACKAGE_VERSION@',
|
|
author = 'Arvid Norberg',
|
|
author_email='@PACKAGE_BUGREPORT@',
|
|
description = 'Python bindings for libtorrent-rasterbar',
|
|
long_description = 'Python bindings for libtorrent-rasterbar',
|
|
url = 'http://www.rasterbar.com/products/libtorrent/index.html',
|
|
platforms = 'Windows',
|
|
license = 'Boost Software License - Version 1.0 - August 17th, 2003',
|
|
packages = ['libtorrent'],
|
|
)
|
|
sys.exit(0)
|
|
|
|
config_vars = sysconfig.get_config_vars()
|
|
if "CFLAGS" in config_vars and "-Wstrict-prototypes" in config_vars["CFLAGS"]:
|
|
config_vars["CFLAGS"] = config_vars["CFLAGS"].replace("-Wstrict-prototypes", " ")
|
|
if "OPT" in config_vars and "-Wstrict-prototypes" in config_vars["OPT"]:
|
|
config_vars["OPT"] = config_vars["OPT"].replace("-Wstrict-prototypes", " ")
|
|
|
|
source_list = os.listdir(os.path.join(os.path.dirname(__file__), "src"))
|
|
source_list = [os.path.join("src", s) for s in source_list if s.endswith(".cpp")]
|
|
|
|
extra_cmd = '@COMPILETIME_OPTIONS@ @CPPFLAGS@ @LIBS@ @BOOST_SYSTEM_LIB@ @BOOST_PYTHON_LIB@ @PTHREAD_LIBS@ @OPENSSL_LIBS@ @OPENSSL_LDFLAGS@ @OPENSSL_INCLUDES@'
|
|
|
|
setup( name='python-libtorrent',
|
|
version='@PACKAGE_VERSION@',
|
|
author = 'Arvid Norberg',
|
|
author_email='@PACKAGE_BUGREPORT@',
|
|
description = 'Python bindings for libtorrent-rasterbar',
|
|
long_description = 'Python bindings for libtorrent-rasterbar',
|
|
url = 'http://www.rasterbar.com/products/libtorrent/index.html',
|
|
platforms = 'any',
|
|
license = 'Boost Software License - Version 1.0 - August 17th, 2003',
|
|
ext_modules = [Extension('libtorrent',
|
|
sources = source_list,
|
|
language='c++',
|
|
include_dirs = ['@top_srcdir@/include'] + parse_cmd(extra_cmd, '-I'),
|
|
library_dirs = ['@top_builddir@/src/.libs'] + parse_cmd(extra_cmd, '-L'),
|
|
extra_link_args = '@LDFLAGS@'.split() + arch(),
|
|
extra_compile_args = parse_cmd(extra_cmd, '-D', True) + arch(),
|
|
libraries = ['torrent-rasterbar'] + parse_cmd(extra_cmd, '-l'))],
|
|
)
|