summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript20
1 files changed, 9 insertions, 11 deletions
diff --git a/wscript b/wscript
index 7b159563..9af6443d 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from waflib import Logs, Options, Utils
from waflib.extras import autowaf
# Package version
-INGEN_VERSION = '0.5.1'
+INGEN_VERSION = '1.0.0'
INGEN_MAJOR_VERSION = '0'
# Mandatory waf variables
@@ -65,18 +65,16 @@ def configure(conf):
autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
atleast_version='1.16.0', mandatory=True)
- autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
- atleast_version='0.21.5', mandatory=True)
+ autowaf.check_pkg(conf, 'lilv-1', uselib_store='LILV',
+ atleast_version='1.0.0', mandatory=True)
autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
atleast_version='0.8.7', mandatory=True)
- autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
- atleast_version='0.4.6', mandatory=True)
+ autowaf.check_pkg(conf, 'sratom-1', uselib_store='SRATOM',
+ atleast_version='1.0.0', mandatory=True)
autowaf.check_pkg(conf, 'raul', uselib_store='RAUL',
atleast_version='0.8.10', mandatory=True)
- autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
- atleast_version='0.30.0', mandatory=False)
- autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
- atleast_version='0.12.0', mandatory=False)
+ autowaf.check_pkg(conf, 'serd-1', uselib_store='SERD',
+ atleast_version='1.0.0', mandatory=False)
autowaf.check_pkg(conf, 'portaudio-2.0', uselib_store='PORTAUDIO',
atleast_version='2.0.0', mandatory=False)
@@ -227,7 +225,7 @@ def build(bld):
includes = ['.'],
use = 'libingen',
install_path = '${BINDIR}')
- autowaf.use_lib(bld, obj, 'SORD RAUL LILV LV2')
+ autowaf.use_lib(bld, obj, 'SERD RAUL LILV LV2 SRATOM')
# Test program
if bld.env.BUILD_TESTS:
@@ -240,7 +238,7 @@ def build(bld):
install_path = '',
cxxflags = bld.env.INGEN_TEST_CXXFLAGS,
linkflags = bld.env.INGEN_TEST_LINKFLAGS)
- autowaf.use_lib(bld, obj, 'SORD RAUL LILV LV2 SRATOM')
+ autowaf.use_lib(bld, obj, 'SERD RAUL LILV LV2 SRATOM')
bld.install_files('${DATADIR}/applications', 'src/ingen/ingen.desktop')
bld.install_files('${BINDIR}', 'scripts/ingenish', chmod=Utils.O755)