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

pkg_psxstub_all() {
	pkg_fetch;
	if ! is_build_script_done install; then
		if [ "${TARGET}" = i686-nt32-midipix ]	\
		|| [ "${TARGET}" = x86_64-nt64-midipix ]; then
			build_fileop cd psxstub;
			make ${MAKEFLAGS} DESTDIR=${PKG_PREFIX} TARGET=${TARGET} install;
			if [ -e ${PKG_PREFIX}/lib/libpsxscl.a ]; then
				build_fileop rm ${PKG_PREFIX}/lib/libpsxscl.a;
			fi;
			set_build_script_done install finish;
		fi;
	fi;
};

# vim:filetype=sh