mirror of
https://github.com/fergalmoran/python-shout.git
synced 2025-12-22 17:49:31 +00:00
62 lines
2.0 KiB
Python
62 lines
2.0 KiB
Python
# distutils build script
|
|
# To install shout-python, run 'python setup.py install'
|
|
|
|
from distutils.core import setup, Extension
|
|
import os
|
|
import sys
|
|
|
|
ver = '0.2.1'
|
|
|
|
# write default shout.pc path into environment if PKG_CONFIG_PATH is unset
|
|
if not os.environ.has_key('PKG_CONFIG_PATH'):
|
|
os.environ['PKG_CONFIG_PATH'] = '/usr/local/lib/pkgconfig'
|
|
|
|
# Find shout compiler/linker flag via pkgconfig or shout-config
|
|
if os.system('pkg-config --exists shout 2> /dev/null') == 0:
|
|
pkgcfg = os.popen('pkg-config --cflags shout')
|
|
cflags = pkgcfg.readline().strip()
|
|
pkgcfg.close()
|
|
pkgcfg = os.popen('pkg-config --libs shout')
|
|
libs = pkgcfg.readline().strip()
|
|
pkgcfg.close()
|
|
|
|
else:
|
|
if os.system('pkg-config --usage 2> /dev/null') == 0:
|
|
print "pkg-config could not find libshout: check PKG_CONFIG_PATH"
|
|
if os.system('shout-config 2> /dev/null') == 0:
|
|
scfg = os.popen('shout-config --cflags')
|
|
cflags = scfg.readline().strip()
|
|
scfg.close()
|
|
scfg = os.popen('shout-config --libs')
|
|
libs = scfg.readline().strip()
|
|
scfg.close()
|
|
|
|
else:
|
|
print "pkg-config and shout-config unavailable, build terminated"
|
|
sys.exit(1)
|
|
|
|
# there must be an easier way to set up these flags!
|
|
iflags = [x[2:] for x in cflags.split() if x[0:2] == '-I']
|
|
extra_cflags = [x for x in cflags.split() if x[0:2] != '-I']
|
|
libdirs = [x[2:] for x in libs.split() if x[0:2] == '-L']
|
|
libsonly = [x[2:] for x in libs.split() if x[0:2] == '-l']
|
|
|
|
# include_dirs=[]
|
|
# libraries=[]
|
|
# runtime_library_dirs=[]
|
|
# extra_objects, extra_compile_args, extra_link_args
|
|
shout = Extension('shout', sources = ['shout.c'],
|
|
include_dirs = iflags,
|
|
extra_compile_args = extra_cflags,
|
|
library_dirs = libdirs,
|
|
libraries = libsonly)
|
|
|
|
# data_files = []
|
|
setup (name = 'python-shout',
|
|
version = ver,
|
|
description = 'Bindings for libshout 2',
|
|
url = 'http://icecast.org/download.php',
|
|
author = 'Brendan Cully',
|
|
author_email = 'brendan@xiph.org',
|
|
ext_modules = [shout])
|