mirror of
https://github.com/gryf/wmdocklib.git
synced 2025-12-19 20:38:03 +01:00
committed initial version. don't look at the time-stamp: these files are
dated back in 2003 or so.
This commit is contained in:
26
pywmgeneral/setup.py
Executable file
26
pywmgeneral/setup.py
Executable file
@@ -0,0 +1,26 @@
|
||||
#! /usr/bin/env python
|
||||
|
||||
from distutils.core import setup, Extension
|
||||
|
||||
|
||||
# Set these so they match your system.
|
||||
XLibDir = '/usr/X11R6/lib'
|
||||
XIncludes = '/usr/X11R6/include'
|
||||
|
||||
|
||||
module1 = Extension('pywmgeneral',
|
||||
libraries = ['Xpm', 'Xext', 'X11'],
|
||||
library_dirs = [XLibDir],
|
||||
include_dirs = [XIncludes],
|
||||
sources = ['pywmgeneral.c'])
|
||||
|
||||
setup(name = 'pywmgeneral',
|
||||
py_modules = ['pywmhelpers'],
|
||||
version = '0.1',
|
||||
author = 'Kristoffer Erlandsson',
|
||||
author_email = 'krier115@student.liu.se',
|
||||
description = 'Python module for making WindowMaker dockapps.',
|
||||
url = 'http://foo.unix.se/pywmdockapps',
|
||||
license = 'GPL',
|
||||
ext_modules = [module1])
|
||||
|
||||
Reference in New Issue
Block a user