1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
#!/usr/bin/env python
#
# i-scream pystatgrab
# http://www.i-scream.org/pystatgrab/
# Copyright (C) 2000-2004 i-scream
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# $Id: setup.py,v 1.19 2005/07/30 10:53:28 tdb Exp $
#
"""Python bindings for libstatgrab."""
from distutils.core import setup, Extension
from commands import getstatusoutput
import sys
import os
# version of pystatgrab
VERSION = "0.4"
# required version of libstatgrab
LIBSTATGRAB = "0.12"
# test for pkg-config presence
if os.system("pkg-config --version >/dev/null 2>&1"):
sys.exit("Error, could not find pkg-config.")
# test for libstatgrab presence using pkg-config
if os.system("pkg-config --exists libstatgrab"):
sys.exit("Error, libstatgrab is not installed (according to pkg-config).")
# test for libstatgrab version using pkg-config
if os.system("pkg-config --atleast-version=%s libstatgrab" % LIBSTATGRAB):
sys.exit("Error, need at least libstatgrab version %s." % LIBSTATGRAB)
# test for _statgrab.c, and try to generate if not found
if not os.path.exists("_statgrab.c"):
print "_statgrab.c doesn't exist, trying to use pyrexc to generate it..."
if os.system("pyrexc --version >/dev/null 2>&1"):
sys.exit("Error, _statgrab.c not present, and can't find pyrexc to generate it with.")
else:
if os.system("pyrexc _statgrab.pyx"):
sys.exit("Error, pyrexc failed to generate _statgrab.c")
# get cflags and libs for libstatgrab
cflags = getstatusoutput("pkg-config --cflags libstatgrab")
libs = getstatusoutput("pkg-config --libs libstatgrab")
if cflags[0] != 0:
sys.exit("Failed to get cflags: " + cflags[1])
if libs[0] != 0:
sys.exit("Failed to get libs: " + libs[1])
# setup information
setup( name = "pystatgrab",
version = VERSION,
description = "Python bindings for libstatgrab",
author = "i-scream",
author_email = "dev@i-scream.org",
url = "http://www.i-scream.org/pystatgrab/",
license = "GNU GPL v2 or later",
ext_modules=[Extension(
"_statgrab",
["_statgrab.c"],
extra_compile_args = cflags[1].split(),
extra_link_args = libs[1].split(),
)],
py_modules=["statgrab"],
)
|