blob: 6d17cd093f5033e20754b7cd2fb8a7ae0b448a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'schroedinger'
version = '1.0.11'
# either LGPLv2 or GPLv2 or MPLv1.1 or MIT
licenses = [License.LGPLv2]
deps = ['orc', 'glib']
can_use_configure_cache = False
autoreconf = True
files_libs = ['libschroedinger-1.0']
files_devel = ['include/schroedinger-1.0', 'lib/pkgconfig/schroedinger-1.0.pc']
def prepare(self):
if self.config.target_platform == Platform.ANDROID:
self.configure_options = ' --with-thread=gthread'
|