~ubuntu-branches/debian/sid/geany-plugins/sid

« back to all changes in this revision

Viewing changes to geanylatex/wscript_build

  • Committer: Package Import Robot
  • Author(s): Evgeni Golov, Evgeni Golov
  • Date: 2011-11-17 20:03:24 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111117200324-8qmu6tuwjtfpv3n7
Tags: 0.21.1-1
[ Evgeni Golov ]
* [f4007f2] Imported Upstream version 0.21.1
* [5ff622d] install plugins from/to /usr/lib/<arch-triplet>/geany
* [75411d7] bump build-dep to geany 0.21
* [db92155] depend on the virtual geany-abi-XX package
* [dd84769] switch to 3.0 (quilt)
* [3ab76d7] drop readme.source
* [233d44c] refresh patch against 0.21.1
* [030bec1] add lintian override for
            documentation-package-not-architecture-independent
* [aba43d7] use debhelper compat level 9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
#
 
3
# WAF build script for geany-plugins - GeanyLaTeX
 
4
#
 
5
# Copyright 2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
 
6
#
 
7
# This program is free software; you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation; either version 2 of the License, or
 
10
# (at your option) any later version.
 
11
#
 
12
# This program is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with this program; if not, write to the Free Software
 
19
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
20
#
 
21
# $Id$
 
22
 
 
23
from build.wafutils import build_plugin, target_is_win32
 
24
 
 
25
 
 
26
name = 'GeanyLaTeX'
 
27
includes = ['geanylatex/src']
 
28
 
 
29
build_plugin(bld, name, includes=includes)
 
30
 
 
31
# install docs
 
32
is_win32 = target_is_win32(bld)
 
33
docdir = '${G_PREFIX}/doc/plugins/geanylatex' if is_win32 else '${DOCDIR}/geanylatex'
 
34
start_dir = bld.path.find_dir('doc')
 
35
bld.install_files(docdir, start_dir.ant_glob('geanylatex.tex'), cwd=start_dir)
 
36
bld.install_files(docdir, start_dir.ant_glob('geanylatex.pdf'), cwd=start_dir)
 
37
bld.install_files(docdir, start_dir.ant_glob('*.html'), cwd=start_dir)
 
38
bld.install_files(docdir, start_dir.ant_glob('*.css'), cwd=start_dir)
 
39
bld.install_files(docdir, start_dir.ant_glob('**/*.png'), cwd=start_dir, relative_trick=True)