Blob Blame History Raw
#
# . ./build.vars and set -o errexit are assumed.
#

pkg_psxstub_finish() {
	if ! is_build_script_done patch; then
		patch -b -d psxstub -p1			\
			< ${MIDIPIX_BUILD_PWD}/psxstub.local.patch;
		set_build_script_done patch -install;
	fi;
	if ! is_build_script_done install; then
		if [ "${TARGET}" = i686-nt32-midipix ]	\
		|| [ "${TARGET}" = x86_64-nt64-midipix ]; then
			cd psxstub;
			make ${MAKEFLAGS} DESTDIR=${PREFIX_LVL} TARGET=${TARGET} install;
			set_build_script_done install finish;
		fi;
	fi;
};

# vim:filetype=sh