# Maintainer (Arch): Ray Rashif # Contributor (Arch): Mateusz Herych # Contributor (Arch): Charles Lindsay # Contributor (Hyperbola): André Silva # Contributor (Hyperbola): Márcio Silva # Maintainer: Omar Vega Ramos _basekernel=4.19 _archrel=112 _parabolarel=1 pkgbase=vhba-module pkgname=(vhba-module vhba-module-dkms) pkgver=20170610 pkgrel=${_archrel}.parabola${_parabolarel}.basekernel${_basekernel} pkgdesc="Kernel module that emulates SCSI devices (built for the linux-libre kernel package)" arch=('i686' 'x86_64' 'armv7h') url="http://cdemu.sourceforge.net/" license=('GPL') # Generic (you shouldn't have to modify any of these variables) _toohigh=$(IFS=. read a b <<<$_basekernel; echo $a.$((b+1))) makedepends=("linux-libre-headers>=${_basekernel}" "linux-libre-headers<${_toohigh}" "linux-libre>=${_basekernel}" "linux-libre<${_toohigh}") makedepends+=('libelf') _extramodules=extramodules source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2" '60-vhba.rules' 'dkms.conf') sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec' '3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b' '8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7') build() { cd $pkgbase-$pkgver make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)" } package_vhba-module() { depends=("linux-libre>=${_basekernel}" "linux-libre<${_toohigh}") replaces=("${pkgbase}-libre" "${pkgbase}-parabola") conflicts=("${pkgbase}-libre" "${pkgbase}-parabola") cd $pkgbase-$pkgver install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules echo 'g cdemu - -' | install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/cdemu.conf" find "$pkgdir" -name '*.ko' -exec xz {} + } package_vhba-module-dkms() { depends=(dkms) provides=("vhba-module=$pkgver-$_archrel") conflicts=(vhba-module) cd $pkgbase-$pkgver install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c ../dkms.conf install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules echo 'g cdemu - -' | install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/cdemu.conf" } # vim:set ts=2 sw=2 et: