Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/osx/setup.py')
-rw-r--r--src/osx/setup.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/osx/setup.py b/src/osx/setup.py
deleted file mode 100644
index 7e18cab45..000000000
--- a/src/osx/setup.py
+++ /dev/null
@@ -1,22 +0,0 @@
-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']),
- ]
-)
-
-# vim: se ts=3: \ No newline at end of file