mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 13:29:24 -04:00
9 lines
278 B
Python
9 lines
278 B
Python
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'],
|
|
)]
|
|
)
|