#! /usr/bin/env python # encoding: utf-8 def configure(conf): conf.check_cfg(package='jack', uselib_store='JACK', args='--cflags --libs', atleast_version='0.109.2') conf.check_cfg(package='gtkmm-2.5', uselib_store='GTKMM', args='--cflags --libs') conf.check(lib='ncurses', header_name='ncurses.h', uselib_store='NCURSES') def build(bld): bld.new_task_gen( features = 'cxx cprogram', source = 'jack.cpp msplit.cpp ui.cpp', target = 'msplit', uselib = 'JACK NCURSES GTKMM')