blob: ecaf54fcda9be0183b8428e08bc29ee8f34faa27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'gmp'
version = '5.0.4'
license = License.LGPL
files_libs = ['libgmp']
files_devel = ['include/gmp.h']
def prepare(self):
# --enable-cxx must be set to enable a proper detection of the link system
# that needs to be used (configure.in is to messy to fix it and this
# flags solves the problem)
# On windows this project cannot build a static and a shared library at
# the same time, so we need to force the build of shared libraries
if self.config.target_platform == Platform.WINDOWS:
self.configure_options += '--enable-cxx --disable-static --enable-shared'
|