]> diplodocus.org Git - flac-archive/commitdiff
Obviously haven't run this in a while; forgot to remove my dead taglib module...
author <epg@pretzelnet.org> <>
Thu, 27 Dec 2012 00:11:03 +0000 (16:11 -0800)
committer <epg@pretzelnet.org> <>
Thu, 27 Dec 2012 00:11:03 +0000 (16:11 -0800)
setup.py

index f4b2d296e43b54ae5a6becc45570fec9dbc3433c..fa59e33018d3e098ad8fa5c09c999c5e3bf35949 100644 (file)
--- 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
-              ),
     ],
       )