diff options
Diffstat (limited to 'core.lv2')
-rw-r--r-- | core.lv2/lv2core.pc.in | 8 | ||||
-rw-r--r-- | core.lv2/wscript | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/core.lv2/lv2core.pc.in b/core.lv2/lv2core.pc.in index 5c06f73..a511a81 100644 --- a/core.lv2/lv2core.pc.in +++ b/core.lv2/lv2core.pc.in @@ -1,7 +1,7 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ +prefix=@PREFIX@ +exec_prefix=@EXEC_PREFIX@ +libdir=@LIBDIR@ +includedir=@INCLUDEDIR@ Name: lv2core Version: @LV2CORE_VERSION@ diff --git a/core.lv2/wscript b/core.lv2/wscript index 68fdd5f..88b8365 100644 --- a/core.lv2/wscript +++ b/core.lv2/wscript @@ -11,10 +11,10 @@ APPNAME = 'lv2core' VERSION = LV2CORE_VERSION # Mandatory variables -srcdir = '.' -blddir = 'build' +top = '.' +out = 'build' -def set_options(opt): +def options(opt): opt.add_option('--bundle-only', action='store_true', default=False, dest='bundle_only', help="Only install LV2 bundle (not header or pkg-config file)") autowaf.set_options(opt) @@ -42,7 +42,7 @@ def build(bld): # lv2config bld.install_files('${BINDIR}', 'lv2config', chmod=0755) - + def dist(): import Scripting Scripting.g_gz = 'gz' |