diff options
Diffstat (limited to 'plugins/eg-scope.lv2/wscript')
-rw-r--r-- | plugins/eg-scope.lv2/wscript | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/eg-scope.lv2/wscript b/plugins/eg-scope.lv2/wscript index ca3413d..5c91da6 100644 --- a/plugins/eg-scope.lv2/wscript +++ b/plugins/eg-scope.lv2/wscript @@ -20,11 +20,9 @@ def configure(conf): conf.load('lv2', cache=True) conf.load('autowaf', cache=True) - autowaf.check_pkg(conf, 'lv2', atleast_version='1.2.1', uselib_store='LV2') - autowaf.check_pkg(conf, 'cairo', uselib_store='CAIRO', - atleast_version='1.8.10', mandatory=True) - autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2', - atleast_version='2.18.0', mandatory=False) + conf.check_pkg('lv2 >= 1.2.1', uselib_store='LV2') + conf.check_pkg('cairo >= 1.8.10', uselib_store='CAIRO') + conf.check_pkg('gtk+-2.0 >= 2.18.0', uselib_store='GTK2', mandatory=False) def build(bld): bundle = 'eg-scope.lv2' |