# Template file for 'wine-gecko'
pkgname=wine-gecko
version="2.24"
revision=2
if [ "$XBPS_MACHINE" = "i686" ]; then
	gecko_arch="x86"
	checksum=6e38acae87ea66e2c1e8f2f0afe88f89eed3e6e0b431cd3da38dea814b71202c
else
	gecko_arch="$XBPS_MACHINE"
	checksum=47557da68bcb2aedaebb93af73275aac96ba23e896bd98f25f2acbfd216d9cc8
fi
distfiles="${SOURCEFORGE_SITE}/wine/wine_gecko-${version}-${gecko_arch}.msi"
homepage="http://wiki.winehq.org/Gecko"
license="MPL-2"
short_desc="Mozilla Gecko Layout Engine for WINE to replace Internet Explorer"
maintainer="davehome <davehome@redthumb.info.tm>"

# XXX there's no support for multilib pkgs yet, so restrict it to x86 for now.
only_for_archs="i686"
create_wrksrc=yes
depends="wine"

do_extract() {
	# This is to avoid re-downloading it everytime this template is
	# edited with a revbump... without an actual version bump.
	cp -v "${XBPS_SRCDISTDIR}/wine_gecko-${version}-${gecko_arch}.msi" \
		${wrksrc}
}

do_install() {
	# The actual installation within WINE occurs at runtime in whatever
	# WINEPREFIX is being used.
	vinstall wine_gecko-${version}-${gecko_arch}.msi 755 usr/share/wine/gecko
}