void-packages/srcpkgs/rtl8812au-dkms/template
Lon Willett 273ae60896 rtl8812au-dkms: update to 20201214
New module version 5.9.3.2; includes fixes for 5.10 kernels.
2020-12-17 15:07:14 -03:00

47 lines
1.3 KiB
Bash

# Template file for 'rtl8812au-dkms'
pkgname=rtl8812au-dkms
version=20201214
revision=1
_modver=5.9.3.2
_gitrev=b95e75064d6aa5b680049a3fe63b2131a3033e3e
wrksrc="rtl8812au-${_modver}-${_gitrev}"
depends="dkms"
short_desc="Realtek 8812AU/8821AU USB WiFi driver (DKMS)"
maintainer="Renato Aguiar <renato@renag.me>"
license="GPL-2.0-only"
homepage="http://www.dlink.com"
distfiles="https://github.com/gordboy/rtl8812au-${_modver}/archive/${_gitrev}.tar.gz"
checksum=25047a16ed9d6682fc8605dedf28a45625c4c1bbd4124a3aa0a085cd0f4e9cb6
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
}
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
}