gajim-plural/src/osx/setup.py
2007-11-14 19:47:52 +00:00

20 lines
574 B
Python

from distutils.core import setup, Extension
setup(
name = 'Gajim',
version = '0.11',
description = 'A full featured Jabber client',
author = 'Gajim Development Team',
url = 'http://www.gajim.org/',
download_url = 'http://www.gajim.org/downloads.php',
license = 'GPL',
ext_modules=[
Extension('idle', ['idle.c'],
extra_compile_args=['-Wall'],
extra_link_args=['-framework', 'IOKit', '-framework', 'Carbon']),
Extension('nsapp', ['nsapp.m'],
extra_compile_args=['-Wall'],
extra_link_args=['-framework', 'AppKit', '-framework', 'Cocoa']),
]
)