void-packages/srcpkgs/rtl8812au-dkms/template

47 lines
1.3 KiB
Bash

# Template file for 'rtl8812au-dkms'
pkgname=rtl8812au-dkms
version=20210629
revision=2
_modver=5.13.6
_gitrev=65949c530359ece8f28c84516f4d17fe7ab7d897
depends="dkms"
short_desc="Realtek 8812AU/8821AU USB WiFi driver (DKMS)"
maintainer="Renato Aguiar <renato@renag.me>"
license="GPL-2.0-only"
homepage="https://github.com/morrownr/8812au"
distfiles="https://github.com/morrownr/8812au-${version}/archive/${_gitrev}.tar.gz"
checksum=9d9ad1a14becf276cde119cdd200b7f05dca957c057810d065b087d2053fed69
dkms_modules="rtl8812au ${_modver}"
case "$XBPS_TARGET_MACHINE" in
x86_64*) _karch="x86_64";;
i686*) _karch="i386";;
aarch64*) _karch="arm64";;
arm*) _karch="arm";;
ppc*) _karch="powerpc";;
mips*) _karch="mips";;
*) broken="kernel arch not defined";;
esac
post_patch() {
if [ "$XBPS_TARGET_ENDIAN" = "be" ]; then
vsed -i 's,@@VOID_ENDIAN@@,BIG,g' Makefile
else
vsed -i 's,@@VOID_ENDIAN@@,LITTLE,g' Makefile
fi
vsed -i "s,@@VOID_ARCH@@,${_karch},g" Makefile
rm *.patch
}
do_install() {
local dest=/usr/src/rtl8812au-${_modver}
vmkdir ${dest}
cp -r dkms.conf Kconfig Makefile platform core hal include os_dep ${DESTDIR}/${dest}
# modules-load.d(5) file.
vmkdir usr/lib/modules-load.d
echo "8812au" > ${DESTDIR}/usr/lib/modules-load.d/${pkgname}.conf
chmod 644 ${DESTDIR}/usr/lib/modules-load.d/${pkgname}.conf
}