summaryrefslogtreecommitdiff
path: root/community/vhba-module/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/vhba-module/PKGBUILD')
-rw-r--r--community/vhba-module/PKGBUILD16
1 files changed, 9 insertions, 7 deletions
diff --git a/community/vhba-module/PKGBUILD b/community/vhba-module/PKGBUILD
index 4e2739fb2..448c9f7fb 100644
--- a/community/vhba-module/PKGBUILD
+++ b/community/vhba-module/PKGBUILD
@@ -1,17 +1,19 @@
-# $Id: PKGBUILD 57058 2011-10-20 04:40:39Z bpiotrowski $
+# $Id: PKGBUILD 58264 2011-11-09 15:50:55Z jelle $
# Maintainer: Mateusz Herych <heniekk@gmail.com>
# Contributor: Charles Lindsay <charles@chaoslizard.org>
pkgname=vhba-module
pkgver=20110915
-_kernver='3.0-ARCH'
-pkgrel=1
+#_kernver='3.1.0-ARCH'
+_extramodules=extramodules-3.1-ARCH
+_kernver="$(cat /lib/modules/${_extramodules}/version)"
+pkgrel=2
pkgdesc="Kernel module that emulates SCSI devices"
arch=('i686' 'x86_64')
url="http://cdemu.sourceforge.net/"
license=('GPL2')
-depends=('linux>=3.0' 'linux<3.1')
-makedepends=('linux-headers>=3.0')
+depends=('linux>=3.1' 'linux<3.2')
+makedepends=('linux-headers>=3.1')
install=vhba-module.install
source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.gz)
md5sums=('fb90cd8fc4cd74d08c92e8235f99f1f4')
@@ -23,6 +25,6 @@ build() {
package() {
cd "$srcdir/$pkgname-$pkgver"
- install -D vhba.ko "$pkgdir/lib/modules/${_kernver}/extra/vhba.ko"
- sed -i "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" "$startdir/vhba-module.install"
+ install -D vhba.ko "$pkgdir/lib/modules/${_extramodules}/vhba.ko"
+ sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" "${startdir}/vhba-module.install"
}