core/dkms/PKGBUILD

51 lines
1.4 KiB
Bash
Raw Normal View History

# Platform Packages for Chakra, part of chakra-project.org
#
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
# Contributor: Balwinder S "bsd" Dheeman (bdheeman AT gmail.com)
#
pkgname=dkms
2012-04-10 02:19:48 +08:00
pkgver=2.2.0.3
pkgrel=3
2012-04-10 02:19:48 +08:00
pkgdesc='Dynamic Kernel Modules System'
arch=('any')
2012-04-10 02:19:48 +08:00
url='http://linux.dell.com/dkms/'
license=('GPL2')
depends=('linux-headers' 'kmod')
backup=('etc/dkms/framework.conf' "etc/conf.d/$pkgname")
2012-04-10 02:19:48 +08:00
source=("http://linux.dell.com/$pkgname/permalink/$pkgname-$pkgver.tar.gz"
"$pkgname.rc"
"$pkgname.conf"
'01-broken-uninstall.patch')
2012-04-10 02:19:48 +08:00
md5sums=('11a8aaade2ebec2803653837c7593030'
'cf3bcc0cec00caf67a6d393e94c65de5'
'8be6746da3df4dcb61cd2b1459974fce'
'4e3a580c09b5af8de7ffde0b61bdcfcf')
build() {
patches=("$srcdir"/*.patch)
2012-04-10 02:19:48 +08:00
cd $pkgname-$pkgver
for p in "${patches[@]}"; do
msg2 "Apply patch: ${p##*/}"
patch -p1 -i "$p"
done
}
package() {
# upstream installer
pushd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
popd
2012-04-10 02:19:48 +08:00
# 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"
2012-04-10 02:19:48 +08:00
}