2013-07-24 20:41:03 +00:00
|
|
|
#!/usr/bin/python
|
2008-10-05 06:05:53 +00:00
|
|
|
|
2010-02-23 13:20:05 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
from glob import glob
|
2010-04-02 12:18:53 +00:00
|
|
|
import os
|
2011-07-29 12:08:03 +00:00
|
|
|
import sys
|
2008-10-05 06:05:53 +00:00
|
|
|
|
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
# config file
|
|
|
|
data_files = [("/etc/lorax", ["etc/lorax.conf"])]
|
2008-10-05 06:05:53 +00:00
|
|
|
|
2010-10-12 16:23:29 +00:00
|
|
|
# shared files
|
2010-04-02 12:18:53 +00:00
|
|
|
for root, dnames, fnames in os.walk("share"):
|
|
|
|
for fname in fnames:
|
|
|
|
data_files.append((root.replace("share", "/usr/share/lorax", 1),
|
|
|
|
[os.path.join(root, fname)]))
|
2008-10-05 05:46:04 +00:00
|
|
|
|
2010-12-17 16:04:04 +00:00
|
|
|
# executable
|
2011-12-16 23:48:02 +00:00
|
|
|
data_files.append(("/usr/sbin", ["src/sbin/lorax", "src/sbin/mkefiboot",
|
|
|
|
"src/sbin/livemedia-creator"]))
|
2014-03-31 18:13:03 +00:00
|
|
|
data_files.append(("/usr/bin", ["src/bin/image-minimizer"]))
|
2010-12-17 16:04:04 +00:00
|
|
|
|
2011-07-29 12:08:03 +00:00
|
|
|
# get the version
|
|
|
|
sys.path.insert(0, "src")
|
|
|
|
try:
|
|
|
|
import pylorax.version
|
|
|
|
except ImportError:
|
|
|
|
vernum = "devel"
|
|
|
|
else:
|
|
|
|
vernum = pylorax.version.num
|
|
|
|
finally:
|
|
|
|
sys.path = sys.path[1:]
|
|
|
|
|
|
|
|
|
2010-02-23 13:20:05 +00:00
|
|
|
setup(name="lorax",
|
2011-07-29 12:08:03 +00:00
|
|
|
version=vernum,
|
2010-02-23 13:20:05 +00:00
|
|
|
description="Lorax",
|
|
|
|
long_description="",
|
|
|
|
author="Martin Gracik",
|
|
|
|
author_email="mgracik@redhat.com",
|
|
|
|
url="http://",
|
|
|
|
download_url="http://",
|
|
|
|
license="GPLv2+",
|
|
|
|
packages=["pylorax"],
|
|
|
|
package_dir={"" : "src"},
|
|
|
|
data_files=data_files
|
|
|
|
)
|