aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: f90c3e01e64144ad09591b1e3756bb8d2fbe341b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
#
# Copyright (C) 2003  Chris Larson
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
# 
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
# Place, Suite 330, Boston, MA 02111-1307 USA. 

from distutils.core import setup
import os, sys

# bbdir = os.path.join(sys.prefix, 'share', 'bitbake')
# docdir = os.path.join(sys.prefix, 'share', 'doc')
bbdir = os.path.join('share', 'bitbake')
docdir = os.path.join('share', 'doc')

def clean_doc(type):
    origpath = os.path.abspath(os.curdir)
    os.chdir(os.path.join(origpath, 'doc', 'manual'))
    make = os.environ.get('MAKE') or 'make'
    os.system('%s clean-%s' % (make, type))

def generate_doc(type):
    origpath = os.path.abspath(os.curdir)
    os.chdir(os.path.join(origpath, 'doc', 'manual'))
    make = os.environ.get('MAKE') or 'make'
    ret = os.system('%s %s' % (make, type))
    if ret != 0:
        print "ERROR: Unable to generate html documentation."
        sys.exit(ret)
    os.chdir(origpath)

if 'bdist' in sys.argv[1:]:
    generate_doc('html')

import glob
setup(name='bitbake',
      version='1.0',
      license='GPL',
      description='BitBake build tool',
      long_description='BitBake is a simple tool for the execution of tasks. It is derived from Portage, which is the package management system used by the Gentoo Linux distribution. It is most commonly used to build packages, as it can easily use its rudamentary inheritence to abstract common operations, such as fetching sources, unpacking them, patching them, compiling them, and so on.  It is the basis of the OpenEmbedded project, which is being used for OpenZaurus, Familiar, and a number of other Linux distributions.',
      author='Chris Larson',
      author_email='clarson@elinux.org',
      packages=['bb', 'bb.parse'],
      package_dir={'bb': os.path.join('lib', 'bb')},
      scripts=[os.path.join('bin', 'bitbake'),
               os.path.join('bin', 'bbread'), 
               os.path.join('bin', 'bbimage')],
      data_files=[(os.path.join(bbdir, 'conf'), [os.path.join('conf', 'bitbake.conf')]),
                  (os.path.join(bbdir, 'classes'), [os.path.join('classes', 'base.bbclass')]),
                  (os.path.join(docdir, 'bitbake-1.0', 'html'), glob.glob(os.path.join('doc', 'manual', 'html', '*.html'))),
                  (os.path.join(docdir, 'bitbake-1.0', 'pdf'), glob.glob(os.path.join('doc', 'manual', 'pdf', '*.pdf'))),],
     )

if 'bdist' in sys.argv[1:]:
    clean_doc('html')