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

« back to all changes in this revision

Viewing changes to src/gio/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
name = "GIO"
 
2
pkg_config_name = "gio-2.0"
 
3
 
 
4
libraries = {}
 
5
libraries.linux = { "/usr/lib/libgio-2.0.so" }
 
6
libraries.win32 = { "libgio-2.0-0.dll" }
 
7
 
 
8
include_dirs = { "gio" }
 
9
 
 
10
includes = {}
 
11
includes.all = {
 
12
        "<gio/gio.h>",
 
13
}
 
14
 
 
15
-- extra settings for the module_info structure
 
16
module_info = {
 
17
    prefix_func = '"g_"',
 
18
    prefix_constant = '"G_"',
 
19
    prefix_type = '"G"',
 
20
    depends = '"glib\\0"',
 
21
}
 
22