rtl8812au-openhd-dkms-git: add RTL88xxAU driver with OpenHD patches

This commit is contained in:
Rihards Skuja 2023-11-10 20:07:06 +02:00
parent e2bb704887
commit 34fb075df9
Signed by: rhssk
GPG Key ID: BABE7EB1F38C7EF6
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,14 @@
pkgbase = rtl8812au-openhd-dkms-git
pkgdesc = Patched rtl88xxau drivers for wifibroadcast
pkgver = 5.2.20.2.r781.8f30f65
pkgrel = 1
url = https://github.com/OpenHD/rtl8812au
arch = any
license = GPL2
makedepends = git
depends = dkms
depends = bc
source = git+https://github.com/OpenHD/rtl8812au.git
sha256sums = SKIP
pkgname = rtl8812au-openhd-dkms-git

3
rtl8812au-openhd-dkms-git/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*
!/PKGBUILD
!/.SRCINFO

View File

@ -0,0 +1,28 @@
# Maintainer: Rihards Skuja <rihards at skuja dot eu>
pkgname=rtl8812au-openhd-dkms-git
_modname=88XXau_wfb
pkgver=5.2.20.2.r781.8f30f65
_pkgver=5.2.20.2
pkgrel=1
pkgdesc='Patched rtl88xxau drivers for wifibroadcast'
arch=(any)
url='https://github.com/OpenHD/rtl8812au'
license=(GPL2)
depends=('dkms' 'bc')
makedepends=('git')
source=('git+https://github.com/OpenHD/rtl8812au.git')
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/rtl8812au"
printf '%s.r%s.%s' "${_pkgver}" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
package() {
cd "${srcdir}/rtl8812au"
mkdir -p "${pkgdir}/usr/src/${_modname}-${pkgver}"
cp -pr * "${pkgdir}/usr/src/${_modname}-${pkgver}"
install -Dm644 dkms.conf "${pkgdir}/usr/src/${_modname}-${pkgver}/dkms.conf"
sed -e "s/@PKGVER@/${pkgver}/" -i "${pkgdir}/usr/src/${_modname}-${pkgver}/dkms.conf"
}