#!/bin/bash hvbuild() { make # Removes references to the build directory and replaces them with saner # system-wide locations: sed -i \ -e "s@^\(TK_SRC_DIR='\).*@\1/usr/include'@" \ -e "/TK_B/s@='\(-L\)\?.*unix@='\1/usr/lib@" \ -e "/SEARCH/s/=.*/=''/" \ tkConfig.sh make install } hvbuild_post() { make install-private-headers # Special case for TK PKG_VER_BASE=$(echo ${PACKAGE} | sed "s!^tk\([0-9]*\.[0-9]*\).*!\1!g") ln -v -sf wish${PKG_VER_BASE} /usr/bin/wish }