changed wmdocklib to pywmdockapps

This commit is contained in:
Fredrick W. Warren 2026-04-17 19:16:28 -04:00
parent 16ca19db37
commit 7a00d8b440
31 changed files with 9 additions and 8 deletions

View File

@ -1,27 +1,28 @@
#!/usr/bin/env python
from __future__ import absolute_import
from setuptools import setup, Extension
# Set these so they match your system.
from __future__ import absolute_import
XLibDir = '/usr/lib/x11'
XIncludes = '/usr/include/x11'
from setuptools import setup, Extension
pywmgeneral = Extension('wmdocklib.pywmgeneral',
# Changed 'wmdocklib.pywmgeneral' -> 'pywmdockapps.pywmgeneral'
# Changed source path 'wmdocklib/pywmgeneral.c' -> 'pywmdockapps/pywmgeneral.c'
pywmgeneral = Extension('pywmdockapps.pywmgeneral',
libraries = ['Xpm', 'Xext', 'X11'],
library_dirs = [XLibDir],
include_dirs = [XIncludes],
sources = ['wmdocklib/pywmgeneral.c'])
sources = ['pywmdockapps/pywmgeneral.c'])
setup(
name="pywmdockapps",
version = "$Revision: 1.99 $"[11:-2],
description="This helper functions for windowmaker dockapps\nRead the whole story at http://pywmdockapps.sourceforge.net/",
description="This helper functions for windowmaker dockapps",
author="Kristoffer Erlandsson & al.",
author_email="mfrasca@zonnet.nl",
url="http://pywmdockapps.sourceforge.net",
license="(L)GPL",
packages=['wmdocklib'],
package_data={'wmdocklib': ['*.xpm']},
packages=['pywmdockapps'], # Changed here
package_data={'pywmdockapps': ['*.xpm']}, # Changed here
ext_modules=[pywmgeneral],
)