summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-04-04 00:27:55 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-04-04 00:42:55 +0200
commitbce8e396fe4b8b7b1e39d3098fb043d3ea503406 (patch)
treec347e1b427533b2ed69a3a56b80c0038d2efc54f
parent2e520e0625309fcb3ae98fe7a5f3abd8cc3693fa (diff)
boost: add new recipe for boost
-rw-r--r--recipes/boost.recipe17
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes/boost.recipe b/recipes/boost.recipe
new file mode 100644
index 0000000..c34c696
--- /dev/null
+++ b/recipes/boost.recipe
@@ -0,0 +1,17 @@
+# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
+
+
+class Recipe(recipe.Recipe):
+ version = '1.53.0'
+ name = 'boost'
+ licenses = [License.GPL]
+ stype = SourceType.TARBALL
+ btype = BuildType.MAKEFILE
+ url = 'http://downloads.sourceforge.net/project/boost/boost/1.53.0/boost_1_53_0.tar.bz2'
+ tarball_dirname = 'boost_1_53_0'
+ config_sh = './bootstrap.sh'
+ configure_tpl = "%(config-sh)s --prefix=%(prefix)s "\
+ "--libdir=%(libdir)s " \
+ "--includedir=$CERBERO_PREFIX/include "
+ make = './bjam'
+ make_install = './bjam install'