mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
86a03eca52
a Python Interface to the File Alteration Monitor(fam).
11 lines
290 B
Python
11 lines
290 B
Python
# $FreeBSD$
|
|
from distutils.core import setup, Extension
|
|
import os
|
|
LOCALBASE = os.environ.get('LOCALBASE', '/usr/local')
|
|
setup(name = "fam", ext_modules = [
|
|
Extension("_fam", ["_fam.c"],
|
|
include_dirs=[LOCALBASE + '/include'],
|
|
libraries=['fam'], library_dirs=[LOCALBASE + '/lib'],
|
|
)]
|
|
)
|