Instead of the following line in the PKGBUILD: MODPATH="/usr/lib/modules/extramodules-$(uname -r | sed 's/.[0-9]+-[0-9]+//')"
This should be used instead, to allow for the module installation to work properly: MODPATH="/usr/lib/modules/extramodules-$(uname -r | sed 's/.*-//g')"
The droidcam.install file also needs modifying here: _extramodules="extramodules-$(uname -r | cut -f-2 -d'.')-$(uname -r|sed -e 's/.*-//g')"
To be replaced instead with: _extramodules="extramodules-$(uname -r | sed 's/.*-//g')"
This should get the proper name without including the version.
Pinned Comments