From f8c367ea8e1472e480b9568d6af7ba3bf18d110a Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Sun, 10 Feb 2013 14:03:10 +0100 Subject: [PATCH] Modified instructions to cope with new xbob.buildout develop extension; Upgraded to 1.0.7 --- README.rst | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index b80cd33..26b1007 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,8 @@ This package is a simple Boost.Python wrapper to the (rather quick) open-source facial landmark detector `flandmark -<http://cmp.felk.cvut.cz/~uricamic/flandmark/index.php>`_, **version 1.0.6**. +<http://cmp.felk.cvut.cz/~uricamic/flandmark/index.php>`_, **version 1.0.7** +(or the github state as of 10/february/2013). If you use this package, the author asks you to cite the following paper:: @InProceedings{Uricar-Franc-Hlavac-VISAPP-2012, @@ -41,21 +42,18 @@ package. This works well if Bob is installed centrally at your machine. Otherwise, you will need to tell ``buildout`` how to build the package locally and how to find Bob. For that, just add a custom egg recipe to your buildout that will fetch the package and compile it locally, setting the -environment variable ``PKG_CONFIG_PATH`` to where Bob is installed. For -example:: +buildout variable ``prefixes`` to where Bob is installed (a build directory +will work as well). For example:: [buildout] parts = flandmark <other parts here...> ... - - [env] - PKG_CONFIG_PATH = /Users/andre/work/bob/build/install/lib/pkgconfig + prefixes = /Users/andre/work/bob/build/debug ... [flandmark] - recipe = zc.recipe.egg:custom - environment = env + recipe = xbob.buildout:develop ... -- GitLab