diff options
author | root <root@rshg054.dnsready.net> | 2012-03-27 00:01:20 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-27 00:01:20 +0000 |
commit | c8729cab8302ab82e01135a22fb9fa9704f1559b (patch) | |
tree | f272d52815dcaf543aaf60177bdfc7d28e22e201 /community-testing/vhba-module/PKGBUILD | |
parent | cf507a0dbf5ee8258e49256049b420ac8e191387 (diff) |
Tue Mar 27 00:01:20 UTC 2012
Diffstat (limited to 'community-testing/vhba-module/PKGBUILD')
-rw-r--r-- | community-testing/vhba-module/PKGBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/community-testing/vhba-module/PKGBUILD b/community-testing/vhba-module/PKGBUILD new file mode 100644 index 000000000..906869971 --- /dev/null +++ b/community-testing/vhba-module/PKGBUILD @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 68474 2012-03-25 11:30:35Z schiv $ +# Maintainer: Ray Rashif <schiv@archlinux.org> +# Contributor: Mateusz Herych <heniekk@gmail.com> +# Contributor: Charles Lindsay <charles@chaoslizard.org> + +pkgname=vhba-module +pkgver=20110915 +_extramodules=extramodules-3.2-ARCH +pkgrel=5 +pkgdesc="Kernel module that emulates SCSI devices" +arch=('i686' 'x86_64') +url="http://cdemu.sourceforge.net/" +license=('GPL') +depends=('linux>=3.2' 'linux<3.3') +makedepends=('linux-headers>=3.2') +install=$pkgname.install +source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2" + '60-vhba.rules') +md5sums=('8bb99b427ca67bad448f4dd211bdd1a2' + '549bd2d9696bd1884c8eed7193c00e21') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + _kernver="$(cat /lib/modules/$_extramodules/version)" + + make -j1 KDIR=/usr/src/linux-$_kernver +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + install -D vhba.ko "$pkgdir/lib/modules/$_extramodules/vhba.ko" + + sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='$_extramodules'/" \ + "$startdir/vhba-module.install" + + install -Dm644 "$srcdir/60-vhba.rules" \ + "$pkgdir/lib/udev/rules.d/60-vhba.rules" +} + +# vim:set ts=2 sw=2 et: |