vp-build/srcpkgs/void-repo-nonfree/template

43 lines
1.4 KiB
Bash

# Template file for 'void-repo-nonfree'
pkgname=void-repo-nonfree
version=9
revision=3
noarch=yes
build_style=meta
short_desc="Void Linux drop-in file for the nonfree repository"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="Public Domain"
homepage="http://www.voidlinux.eu"
do_install() {
vmkdir usr/share/xbps.d
case "$XBPS_TARGET_MACHINE" in
aarch64*)
echo "repository=https://alpha.de.repo.voidlinux.org/current/aarch64/nonfree" > \
${DESTDIR}/usr/share/xbps.d/10-repository-nonfree.conf
echo "repository=https://alpha.de.repo.voidlinux.org/current/aarch64/debug" > \
${DESTDIR}/usr/share/xbps.d/20-repository-debug.conf
;;
*-musl)
echo "repository=https://alpha.de.repo.voidlinux.org/current/musl/nonfree" > \
${DESTDIR}/usr/share/xbps.d/10-repository-nonfree.conf
echo "repository=https://alpha.de.repo.voidlinux.org/current/musl/debug" > \
${DESTDIR}/usr/share/xbps.d/20-repository-debug.conf
;;
*)
echo "repository=https://alpha.de.repo.voidlinux.org/current/nonfree" > \
${DESTDIR}/usr/share/xbps.d/10-repository-nonfree.conf
echo "repository=https://alpha.de.repo.voidlinux.org/current/debug" > \
${DESTDIR}/usr/share/xbps.d/20-repository-debug.conf
;;
esac
}
void-repo-debug_package() {
noarch=yes
short_desc="${short_desc/nonfree/debug}"
pkg_install() {
vmove usr/share/xbps.d/20-repository-debug.conf
}
}