# Define the kmod package name here. %define kmod_name wacom # If kversion isn't defined on the rpmbuild line, define it here. #%{!?kversion: %define kversion 3.10.0-327.el7.%{_target_cpu}} %{!?kversion: %define kversion 3.10.0-327.10.1.el7.%{_target_cpu}} %define mversion 3.7 Name: %{kmod_name}-kmod Version: 0.30.2 Release: 1%{?dist} Group: System Environment/Kernel License: GPLv2 Summary: %{kmod_name} kernel module(s) URL: http://www.kernel.org/ BuildRequires: perl BuildRequires: redhat-rpm-config ExclusiveArch: x86_64 # Sources. Source0: %{kmod_name}-%{version}.tar.bz2 Source5: GPL-v2.0.txt Source10: kmodtool-%{kmod_name}-el7.sh # Magic hidden here. %{expand:%(sh %{SOURCE10} rpmtemplate %{kmod_name} %{kversion} "")} # Disable the building of the debug package(s). %define debug_package %{nil} %description This package provides the %{kmod_name} kernel module(s). It is built to depend upon the specific ABI provided by a range of releases of the same variant of the Linux kernel and not on any one specific build. %prep #%setup -q -n %{kmod_name}-%{version} %setup -q -n input-%{kmod_name}-%{version} echo "override %{kmod_name} * weak-updates/%{kmod_name}" > kmod-%{kmod_name}.conf #echo "override %{kmod_name}_i2c * weak-updates/%{kmod_name}" >> kmod-%{kmod_name}.conf echo "override %{kmod_name}_w8001 * weak-updates/%{kmod_name}" >> kmod-%{kmod_name}.conf %build KSRC=%{_usrsrc}/kernels/%{kversion} %configure %{__make} -C "${KSRC}" %{?_smp_mflags} modules M=$PWD pushd %{mversion} >/dev/null %{__make} -C "${KSRC}" %{?_smp_mflags} modules M=$PWD popd >/dev/null %install pushd %{mversion} >/dev/null %{__install} -d %{buildroot}/lib/modules/%{kversion}/extra/%{kmod_name}/ %{__install} %{kmod_name}.ko %{buildroot}/lib/modules/%{kversion}/extra/%{kmod_name}/ #%{__install} %{kmod_name}_i2c.ko %{buildroot}/lib/modules/%{kversion}/extra/%{kmod_name}/ %{__install} %{kmod_name}_w8001.ko %{buildroot}/lib/modules/%{kversion}/extra/%{kmod_name}/ popd >/dev/null %{__install} -d %{buildroot}%{_sysconfdir}/depmod.d/ %{__install} kmod-%{kmod_name}.conf %{buildroot}%{_sysconfdir}/depmod.d/ %{__install} -d %{buildroot}%{_defaultdocdir}/kmod-%{kmod_name}-%{version}/ %{__install} %{SOURCE5} %{buildroot}%{_defaultdocdir}/kmod-%{kmod_name}-%{version}/ %{__install} AUTHORS %{buildroot}%{_defaultdocdir}/kmod-%{kmod_name}-%{version}/ %{__install} ChangeLog %{buildroot}%{_defaultdocdir}/kmod-%{kmod_name}-%{version}/ %{__install} COPYING %{buildroot}%{_defaultdocdir}/kmod-%{kmod_name}-%{version}/ %{__install} NEWS %{buildroot}%{_defaultdocdir}/kmod-%{kmod_name}-%{version}/ %{__install} README %{buildroot}%{_defaultdocdir}/kmod-%{kmod_name}-%{version}/ %{__install} version %{buildroot}%{_defaultdocdir}/kmod-%{kmod_name}-%{version}/ # strip the modules(s) find %{buildroot} -type f -name \*.ko -exec %{__strip} --strip-debug \{\} \; # Sign the modules(s) %if %{?_with_modsign:1}%{!?_with_modsign:0} # If the module signing keys are not defined, define them here. %{!?privkey: %define privkey %{_sysconfdir}/pki/SECURE-BOOT-KEY.priv} %{!?pubkey: %define pubkey %{_sysconfdir}/pki/SECURE-BOOT-KEY.der} for module in $(find %{buildroot} -type f -name \*.ko); do %{__perl} /usr/src/kernels/%{kversion}/scripts/sign-file \ sha256 %{privkey} %{pubkey} $module; done %endif %clean %{__rm} -rf %{buildroot} %changelog * Thu Mar 24 2016 Tomasz Tomasik - 0.30.2-1 - Initial el7 build of the kmod package. [https://sourceforge.net/projects/linuxwacom/files/xf86-input-wacom/]