mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
# $Id: PKGBUILD 44936 2011-04-13 05:20:34Z schiv $
|
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
|
# Contributor: Charles Lindsay <charles@chaoslizard.org>
|
|
|
|
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
|
# - Remove -ARCH from kernver
|
|
|
|
plugrel=1
|
|
|
|
pkgname=vhba-module
|
|
pkgver=20100822
|
|
_kernver='2.6.38-ARCH'
|
|
pkgrel=4
|
|
pkgdesc="Kernel module that emulates SCSI devices"
|
|
arch=('i686' 'x86_64')
|
|
url="http://cdemu.sourceforge.net/"
|
|
license=('GPL2')
|
|
depends=('kernel26>=2.6.38' 'kernel26<2.6.39')
|
|
makedepends=('kernel26-headers>=2.6.38' 'git')
|
|
install=vhba-module.install
|
|
source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.gz
|
|
vhba-kernel2.6.37.patch)
|
|
md5sums=('1d2f06ae33c5d15b7c29e467e4658aa2'
|
|
'f0499fc54f6ef9b8d6ca0b9e940c5906')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
git apply -p2 ../vhba-kernel2.6.37.patch
|
|
make -j1 KDIR=/usr/src/linux-${_kernver} || return 1
|
|
install -D vhba.ko "$pkgdir/lib/modules/${_kernver}/extra/vhba.ko" || return 1
|
|
sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" "$startdir/vhba-module.install"
|
|
}
|