Skip to content

Commit

Permalink
Update NEWS and README for 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed May 30, 2010
1 parent f3e3522 commit 12cc644
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
8 changes: 8 additions & 0 deletions NEWS
@@ -1,4 +1,11 @@

keybinder v0.2.2
----------------

* Add pkg-config file contributed by Jérôme Guelfucci
* Add Vala example and .vapi file to examples/
* Make lua-keybinder installable (this is experimental), using ax_lua.m4

keybinder v0.2.1
----------------

Expand Down Expand Up @@ -75,4 +82,5 @@ Released 22 November 2009
* Fix language errors in documentation


.. -*- encoding: UTF-8 -*-
.. vim: ft=rst tw=72
21 changes: 16 additions & 5 deletions README
Expand Up @@ -12,16 +12,27 @@ The library contains:
* A C library, ``libkeybinder``
* Lua bindings, ``lua-keybinder``
* Python bindings, ``python-keybinder``
* An ``examples`` directory including C, Python and Lua example
programs.
* An ``examples`` directory with programs in C, Lua, Python and Vala.


Compile and Installation Notes
------------------------------

If you don't have the neccessary dependencies, and don't want to build
the python bindings, you have to explicitly disable them using the
``--disable-python`` option with configure.

It is possible you need to tell configure where Lua includes are to
be found using the ``--with-lua-includes=`` option, and how to find the
right library version using the ``--with-lua-suffix=5.1`` option.
It is possible you need to tell configure where Lua includes are to be
found using (adjusting the path appropriately)::

./configure CPPFLAGS=-I/usr/include/lua5.1

If you want to compile with reduced library linking, configure using::

CC="cc -Wl,--as-needed" ./configure

History
-------

This library originates in `Tomboy`_ and has been widely reused without
having a separate release. This package has taken the python bindings
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,4 +1,4 @@
AC_INIT(keybinder, 0.2.1,
AC_INIT(keybinder, 0.2.2,
[])
AC_CONFIG_SRCDIR(libkeybinder/bind.c)
AC_CONFIG_MACRO_DIR([m4])
Expand Down

0 comments on commit 12cc644

Please sign in to comment.