summaryrefslogtreecommitdiffhomepage
path: root/003.psxstub.vars
blob: 4683b7ab0cdcd8f17d783c81245ae1f304d4ac1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# . ./build.vars and set -o errexit are assumed.
#

pkg_psxstub_finish() {
	if ! is_build_script_done install; then
		if [ "x${TARGET}" = "xi686-nt32-midipix" ]\
		|| [ "x${TARGET}" = "xx86_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