From 8c62187468fd10e41a9f8e1f78f9cd48377ee2b5 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Thu, 7 Nov 2024 21:43:37 +0100 Subject: [PATCH] package created using the webbuild interface [release 5.6.4.2.20240510.b44d288-1mamba;Tue Jun 04 2024] --- README.md | 2 ++ rtl88xxau.spec | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 rtl88xxau.spec diff --git a/README.md b/README.md index 11674dd..24d0489 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # rtl88xxau +RTL8812AU/21AU and RTL8814AU driver with monitor mode and frame injection. + diff --git a/rtl88xxau.spec b/rtl88xxau.spec new file mode 100644 index 0000000..f4bb3e5 --- /dev/null +++ b/rtl88xxau.spec @@ -0,0 +1,67 @@ +%define gittag %(echo %version | cut -d. -f1-4) +%define gitcommit %(echo %version | cut -d. -f6) + +Name: rtl88xxau +Version: 5.6.4.2.20240510.b44d288 +Release: 1mamba +Summary: RTL8812AU/21AU and RTL8814AU driver with monitor mode and frame injection +Group: System/Kernel and Hardware +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/aircrack-ng/rtl8812au +Source: https://github.com/aircrack-ng/rtl8812au.git/v%{gittag}@%{gitcommit}/rtl8812au-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +Requires(post): bc +Requires(post): dkms +Requires(post): kernelheaders + +%description +RTL8812AU/21AU and RTL8814AU driver with monitor mode and frame injection. + +%prep +%setup -q -n rtl8812au-%{version} +sed -i "s|\(PACKAGE_NAME=\).*|\1\"%{name}\"|" dkms.conf +sed -i "s|\(PACKAGE_VERSION=\).*|\1%{version}|" dkms.conf + +%build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +install -d -m0755 %{buildroot}%{_prefix}/src/%{name}-%{version} +cp -a * %{buildroot}%{_prefix}/src/%{name}-%{version} + +# Remove unnecessary files for build +rm -r %{buildroot}%{_prefix}/src/%{name}-%{version}/{android,docs,tools} + +%check +%make + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%preun +# erase +if [ $1 -eq 0 ]; then + dkms remove -q -m %{name} -v %{version} --all +fi +: + +%post +if [ $1 -ge 1 ]; then + dkms add -q -m %{name} -v %{version} + dkms install -q -m %{name} -v %{version} --force +fi +: + +%files +%defattr(-,root,root) +%dir %{_prefix}/src/%{name}-%{version} +%{_prefix}/src/%{name}-%{version}/* +%doc LICENSE + +%changelog +* Tue Jun 04 2024 Silvan Calarco 5.6.4.2.20240510.b44d288-1mamba +- package created using the webbuild interface