# Template file for 'void-repo-nonfree'
pkgname=void-repo-nonfree
version=9
revision=6
build_style=meta
short_desc="Void Linux drop-in file for the nonfree repository"
maintainer="Orphaned <orphan@voidlinux.org>"
license="Public Domain"
homepage="http://www.voidlinux.org"

do_install() {
	vmkdir usr/share/xbps.d
	case "$XBPS_TARGET_MACHINE" in
		aarch64*)
			echo "repository=https://repo-default.voidlinux.org/current/aarch64/nonfree" > \
				${DESTDIR}/usr/share/xbps.d/10-repository-nonfree.conf
			echo "repository=https://repo-default.voidlinux.org/current/aarch64/debug" > \
				${DESTDIR}/usr/share/xbps.d/20-repository-debug.conf
			;;
		*-musl)
			echo "repository=https://repo-default.voidlinux.org/current/musl/nonfree" > \
				${DESTDIR}/usr/share/xbps.d/10-repository-nonfree.conf
			echo "repository=https://repo-default.voidlinux.org/current/musl/debug" > \
				${DESTDIR}/usr/share/xbps.d/20-repository-debug.conf
			;;
		*)
			echo "repository=https://repo-default.voidlinux.org/current/nonfree" > \
				${DESTDIR}/usr/share/xbps.d/10-repository-nonfree.conf
			echo "repository=https://repo-default.voidlinux.org/current/debug" > \
				${DESTDIR}/usr/share/xbps.d/20-repository-debug.conf
			;;
	esac
}

void-repo-debug_package() {
	short_desc="${short_desc/nonfree/debug}"
	pkg_install() {
		vmove usr/share/xbps.d/20-repository-debug.conf
	}
}
