2012-11-14 10:54:03 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import subprocess
|
|
|
|
import waflib.Options as Options
|
|
|
|
import string
|
|
|
|
import os
|
|
|
|
|
|
|
|
# Version of this package (even if built as a child)
|
|
|
|
PACKAGE_VERSION = '1.9.5'
|
|
|
|
|
|
|
|
# Variables for 'waf dist'
|
|
|
|
APPNAME = 'non-sequencer'
|
|
|
|
VERSION = PACKAGE_VERSION
|
|
|
|
|
|
|
|
# Mandatory variables
|
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
opt.load('compiler_c')
|
|
|
|
opt.load('compiler_cxx')
|
|
|
|
opt.load('gnu_dirs')
|
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
conf.load('compiler_c')
|
|
|
|
conf.load('compiler_cxx')
|
|
|
|
conf.load('gnu_dirs')
|
|
|
|
|
|
|
|
conf.check_cfg(package='sigc++-2.0', uselib_store='SIGCPP',
|
|
|
|
atleast_version='2.0.0', args="--cflags --libs", mandatory=True)
|
|
|
|
|
|
|
|
conf.define('VERSION', PACKAGE_VERSION)
|
2012-11-17 02:20:20 +01:00
|
|
|
conf.define('SYSTEM_PATH', '/'.join( [ conf.env.DATADIR, APPNAME ] ) )
|
|
|
|
conf.define('DOCUMENT_PATH', '/'.join( [ conf.env.DATADIR, 'doc' ] ) )
|
|
|
|
conf.define('PIXMAP_PATH', '/'.join( [ conf.env.DATADIR, 'pixmaps' ] ) )
|
2012-11-14 10:54:03 +01:00
|
|
|
|
|
|
|
conf.write_config_header('config.h', remove=False)
|
|
|
|
|
|
|
|
print('')
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
|
|
|
|
libs = ''
|
|
|
|
|
|
|
|
bld.program( source = '''
|
|
|
|
src/NSM.C
|
|
|
|
src/NSM/Client.C
|
|
|
|
src/canvas.C
|
|
|
|
src/debug.C
|
|
|
|
src/grid.C
|
|
|
|
src/gui/event_edit.fl
|
|
|
|
src/gui/ui.fl
|
|
|
|
src/instrument.C
|
|
|
|
src/jack.C
|
|
|
|
src/main.C
|
|
|
|
src/mapping.C
|
|
|
|
src/pattern.C
|
|
|
|
src/phrase.C
|
|
|
|
src/scale.C
|
|
|
|
src/sequence.C
|
|
|
|
src/smf.C
|
|
|
|
src/transport.C
|
|
|
|
''',
|
|
|
|
target = 'non-sequencer',
|
|
|
|
includes = ['.', 'src', 'src/gui', '../FL', '../nonlib'],
|
|
|
|
use = ['nonlib', 'fl_widgets'],
|
2013-03-19 06:54:55 +01:00
|
|
|
uselib = [ 'JACK', 'SIGCPP', 'LIBLO', 'XLIB', 'NTK', 'NTK_IMAGES', 'PTHREAD'],
|
2012-11-14 10:54:03 +01:00
|
|
|
install_path = '${BINDIR}')
|
|
|
|
|
2012-11-21 03:01:35 +01:00
|
|
|
bld( features = 'subst',
|
|
|
|
source = 'non-sequencer.desktop.in',
|
|
|
|
target = 'non-sequencer.desktop',
|
|
|
|
encoding = 'utf8',
|
|
|
|
install_path = "${DATADIR}" + '/applications',
|
|
|
|
BIN_PATH = bld.env.BINDIR )
|
|
|
|
|
2012-11-17 02:20:20 +01:00
|
|
|
bld.install_files('/'.join( [ '${DATADIR}', APPNAME, 'instruments'] ), bld.path.ant_glob('instruments/*'))
|
2012-11-14 10:54:03 +01:00
|
|
|
|
|
|
|
start_dir = bld.path.find_dir( 'icons/hicolor' )
|
|
|
|
|
|
|
|
bld.install_files('${DATADIR}/icons/hicolor', start_dir.ant_glob('**/*.png'),
|
|
|
|
cwd=start_dir, relative_trick=True)
|
|
|
|
|
|
|
|
bld.install_as('${DATADIR}/pixmaps/' + APPNAME + '/icon-256x256.png', 'icons/hicolor/256x256/apps/' + APPNAME + '.png')
|
|
|
|
|
2012-11-17 02:20:20 +01:00
|
|
|
bld.install_files( '/'.join( [ '${DATADIR}/doc', APPNAME ] ), bld.path.ant_glob( 'doc/*.html doc/*.png' ) )
|