Initial commit

This commit is contained in:
Fergal Moran
2015-09-22 21:14:19 +01:00
parent 264fd1adb4
commit 4dbf77c202
8 changed files with 1235 additions and 0 deletions

61
setup.py Normal file
View File

@@ -0,0 +1,61 @@
# 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])