File: wscript_build

package info (click to toggle)
geany-plugins 0.21.1.dfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,460 kB
  • sloc: ansic: 47,147; sh: 11,024; makefile: 1,099; python: 229
file content (70 lines) | stat: -rw-r--r-- 2,294 bytes parent folder | download
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
68
69
70
# -*- coding: utf-8 -*-
#
# WAF build script for geany-plugins - GeanyLUA
#
# Copyright 2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# $Id$

from build.wafutils import build_plugin, target_is_win32


name = 'GeanyLUA'
sources = ['geanylua.c']
lua_sources = [ 'glspi_init.c', 'glspi_app.c', 'glspi_dlg.c',
                'glspi_doc.c', 'glspi_kfile.c', 'glspi_run.c',
                'glspi_sci.c', 'gsdlg_lua.c' ]
libraries = ['LUA']

build_plugin(bld, name, sources=sources, libraries=libraries)


is_win32 = target_is_win32(bld)
if is_win32:
    install_path = '${G_PREFIX}/lib/geany-plugins/geanylua'
else:
    install_path = '${LIBDIR}/geany-plugins/geanylua'

# build helper library
bld.new_task_gen(
    features        = 'c cshlib',
    source          = lua_sources,
    defines         = 'G_LOG_DOMAIN="%s"' % name,
    includes        = bld.out_dir,
    target          = 'libgeanylua',
    uselib          = libraries,
    install_path    = install_path)


# prepare installation of docs/examples
if is_win32:
    geanylua_datadir = '${G_PREFIX}/${GEANYPLUGINS_DATADIR}/geany-plugins/geanylua'
    docdir = '${G_PREFIX}/doc/plugins/geanylua'
else:
    geanylua_datadir = '${GEANYPLUGINS_DATADIR}/geany-plugins/geanylua'
    docdir = '${DOCDIR}/geanylua'

# install docs
start_dir = bld.path.find_dir('docs')
bld.install_files(docdir, start_dir.ant_glob('*.html'), cwd=start_dir)
# install examples
start_dir = bld.path.find_dir('examples')
bld.install_files(
    geanylua_datadir,
    start_dir.ant_glob('**/*.lua'),
    cwd=start_dir,
    relative_trick=True)