File: setup-jack.py

package info (click to toggle)
jack 2.99.7-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 988 kB
  • ctags: 599
  • sloc: python: 4,234; ansic: 1,908; makefile: 45
file content (23 lines) | stat: -rwxr-xr-x 712 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

"""Setup script for the (patched) curses module distribution."""

# this is work in progress
print "This is work in progress, install manually. Read doc/INSTALL."
from sys import exit
exit(1)


from distutils.core import setup, Extension

setup (# Distribution meta-data
       name = "jack",
       version = "2.99.5",
       description = "A frontend for several cd-rippers and mp3 encoders",
       author = "Arne Zellentin",
       author_email = "arne@unix-ag.org",
       url = "http://www.home.unix-ag.org/arne/jack/",

       # Description of the modules and packages in the distribution
       #ext_modules = [ Extension('cursesmodule', ['cursesmodule/cursesmodule.c']) ]
      )