mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
700 B
Bash
22 lines
700 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
||
|
# Contributor: Charles Lindsay <charles@chaoslizard.org>
|
||
|
|
||
|
pkgname=vhba-module
|
||
|
pkgver=1.2.1
|
||
|
pkgrel=3
|
||
|
pkgdesc="Kernel module that emulates SCSI devices"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://cdemu.sourceforge.net/"
|
||
|
license=('GPL2')
|
||
|
depends=('kernel26>=2.6.30' 'kernel26<2.6.31')
|
||
|
install=vhba-module.install
|
||
|
source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('a3b6ad798f2b72ef599df797ef79e5ec')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
make KDIR=/usr/src/linux-`uname -r` || return 1
|
||
|
install -D vhba.ko $startdir/pkg/lib/modules/`uname -r`/extra/vhba.ko || return 1
|
||
|
}
|