#/bin/bash -l PKGNAME=cmake #These are required variables and must VERSION=3.0.1 #be set before calling 'init_udbuildenv' vpkg_devrequire udbuild #Use VALET to load the udbuild environment init_udbuildenv #Initialize the udbuild environment ./configure --prefix=$PREFIX #Run your normal configure, without #having to define your own PREFIX #variable, because 'init_udbuildenv' did #that for you. make #normal make commands udbuildmon make install #wrap your 'make install' with the #'udbuildmon' function to log what files #and directories were changed.