~ubuntu-branches/ubuntu/natty/lua-gtk/natty

« back to all changes in this revision

Viewing changes to src/gtkspell/spec.lua

  • Committer: Bazaar Package Importer
  • Author(s): Enrico Tassi
  • Date: 2009-05-17 18:16:21 UTC
  • mfrom: (1.2.1 upstream) (4.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090517181621-9kmdd82nxg54jsio
* new upstream snapshot comprising many more GNOME libraries:
    Gtk, GDK, GLib, Pango, Atk, Libxml2, Cairo, Clutter, Gtkhtml, 
    GtkSourceView, Gio, Gtkspell and GConf. 
* new upstream release includes a new configure script written in Lua,
  no more bashisms there (Closes: #507205)
* renamed binary packages to liblua5.1-gnome-*
* updated standards-version to 3.8.1, no changes needed
* patch to load .so.* version of libraries and not .so (that was requiring
  -dev packages) (Closes: #522087)
* removed redundant Architecture line from the source stanza of control
  (Closes: #498120)
* updated copyright file, Wolfgang Oertl holds it for 2009 too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- vim:sw=4:sts=4
 
2
 
 
3
name = "gtkspell"
 
4
pkg_config_name = "gtkspell-2.0"
 
5
 
 
6
libraries = {}
 
7
libraries.linux = { "/usr/lib/libgtkspell.so" }
 
8
libraries.win32 = { "libgtkspell.dll" }
 
9
 
 
10
include_dirs = { "gtkspell-2.0" }
 
11
 
 
12
includes = {}
 
13
includes.all = {
 
14
    "<gtk/gtk.h>",
 
15
    "<gtkspell/gtkspell.h>",
 
16
}
 
17
 
 
18
-- build time dependencies on other modules
 
19
--moddep = {
 
20
--    "glib",
 
21
--}
 
22
 
 
23
-- extra settings for the module_info structure
 
24
module_info = {
 
25
    prefix_func = '"gtkspell_"',
 
26
    prefix_constant = '"GTKSPELL_"',
 
27
    prefix_type = '"GtkSpell"',
 
28
    depends = '""',
 
29
}
 
30