From: Date: Thu, 27 Dec 2012 00:11:03 +0000 (-0800) Subject: Obviously haven't run this in a while; forgot to remove my dead taglib module... X-Git-Url: https://diplodocus.org/git/flac-archive/commitdiff_plain/2b924fb847b63a10724e855ea0d61fca60d4723e?ds=inline Obviously haven't run this in a while; forgot to remove my dead taglib module... --- diff --git a/setup.py b/setup.py index f4b2d29..fa59e33 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,6 @@ import os from distutils.core import Extension, setup -from subprocess import Popen, PIPE - -taglib_config = os.getenv('TAGLIB_CONFIG', 'taglib-config') -taglib_cflags = Popen([taglib_config, '--cflags'], - stdout=PIPE).communicate()[0].strip().split() -taglib_libs = Popen([taglib_config, '--libs'], - stdout=PIPE).communicate()[0].strip().split() setup(name='flac-archive', version='6', license='MIT', @@ -23,9 +16,5 @@ setup(name='flac-archive', version='6', Extension(name='flac_archive.flac', sources=['flac.c'], extra_link_args=['-lFLAC'], ), - Extension(name='flac_archive.taglib', sources=['taglib.cc'], - extra_compile_args=taglib_cflags, - extra_link_args=taglib_libs - ), ], )