File PKGBUILD of Package dkms
# $Id$
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Balwinder S "bsd" Dheeman (bdheeman AT gmail.com)
pkgname=dkms
pkgver=2.2.0.3
pkgrel=12
pkgdesc='Dynamic Kernel Modules System'
arch=('any')
url='http://linux.dell.com/dkms/'
license=('GPL2')
depends=('bash' 'kmod' 'gcc' 'make' 'patch')
optdepends=('linux-headers: build modules against Arch kernel'
'linux-lts-headers: build modules against LTS Arch kernel')
backup=('etc/dkms/framework.conf' "etc/conf.d/$pkgname")
source=("$pkgname-$pkgver.tar.gz"
"$pkgname.rc"
"$pkgname.conf"
"$pkgname.service"
"$pkgname.systemd"
'01-broken-uninstall.patch')
md5sums=('11a8aaade2ebec2803653837c7593030'
'92979b8f9b06205560f2fba732c6bdf7'
'8be6746da3df4dcb61cd2b1459974fce'
'3034c49bf65957c71c8bda55bca6184e'
'267632312aa52a190ec0db0758920dd3'
'4e3a580c09b5af8de7ffde0b61bdcfcf')
build() {
patches=("$srcdir"/*.patch)
cd $pkgname-$pkgver
for p in "${patches[@]}"; do
msg2 "Apply patch: ${p##*/}"
patch -p1 -i "$p"
done
# /usr move
msg2 '/usr move patching'
for i in dkms{,_framework.conf,.bash-completion,.8,_common.postinst}; do
sed -ri 's,/lib/modules,/usr/lib/modules,g' "$i"
done
}
package() {
# upstream installer
pushd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
popd
# fix hardcoded paths
sed -i "s|/sbin/depmod|depmod|" $pkgdir/usr/sbin/dkms
# remove debian specific
rm -r "$pkgdir/etc/kernel"
# move bash completion in right place
install -d -m 755 "$pkgdir/usr/share/bash-completion"
mv "$pkgdir/etc/bash_completion.d" "$pkgdir/usr/share/bash-completion/completions"
# add initscripts
install -D -m 755 $pkgname.rc "$pkgdir/etc/rc.d/$pkgname"
install -D -m 644 $pkgname.conf "$pkgdir/etc/conf.d/$pkgname"
# add systemd
install -D -m 644 $pkgname.service "$pkgdir/usr/lib/systemd/system/$pkgname.service"
install -D -m 755 $pkgname.systemd "$pkgdir/usr/lib/systemd/scripts/$pkgname"
}
# vim:set ts=2 sw=2 et: