diff options
author | PusMinus0 | 2017-02-06 14:01:19 +0100 |
---|---|---|
committer | PusMinus0 | 2017-02-06 14:01:19 +0100 |
commit | 75f1a1d72eb333eaee3984a74ee612c6d3a34ec6 (patch) | |
tree | 7ea42d13cd4fc77d98e79324004adbafbfca4ed9 | |
parent | 9903d454261797058e49a845119c3c03b57bb92e (diff) | |
download | aur-75f1a1d72eb333eaee3984a74ee612c6d3a34ec6.tar.gz |
Fix build with newer kernels, thx to truongan
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 9 |
2 files changed, 9 insertions, 8 deletions
@@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Thu Oct 13 12:14:59 UTC 2016 +# Mon Feb 6 13:01:17 UTC 2017 pkgbase = evdi pkgdesc = A Linux® kernel module that enables management of multiple screens. pkgver = 1.2.64 - pkgrel = 1 + pkgrel = 2 url = https://github.com/DisplayLink/evdi install = evdi.install changelog = evdi.Changelog @@ -11,8 +11,8 @@ pkgbase = evdi arch = x86_64 license = GPL depends = dkms - source = evdi-1.2.64.tar.gz::https://github.com/DisplayLink/evdi/archive/v1.2.64.tar.gz - md5sums = 5616e0c8f57e4d10de5e7f2a85d919d6 + source = evdi-1.2.64-2.tar.gz::https://github.com/DisplayLink/evdi/archive/b7606bccc0cb9484c2845a3e556faf60ed3c0bff.tar.gz + md5sums = 2f229d85de2aa5c1ba6f168a0728ec9d pkgname = evdi @@ -2,7 +2,7 @@ pkgname=evdi pkgver=1.2.64 -pkgrel=1 +pkgrel=2 pkgdesc="A Linux® kernel module that enables management of multiple screens." arch=('i686' 'x86_64') url="https://github.com/DisplayLink/evdi" @@ -18,9 +18,10 @@ backup=() options=() install=$pkgname.install changelog=$pkgname.Changelog -source=($pkgname-$pkgver.tar.gz::https://github.com/DisplayLink/evdi/archive/v$pkgver.tar.gz) +#source=($pkgname-$pkgver-$pkgrel.tar.gz::https://github.com/DisplayLink/evdi/archive/v$pkgver.tar.gz) +source=($pkgname-$pkgver-$pkgrel.tar.gz::https://github.com/DisplayLink/evdi/archive/b7606bccc0cb9484c2845a3e556faf60ed3c0bff.tar.gz) +md5sums=('2f229d85de2aa5c1ba6f168a0728ec9d') noextract=() -md5sums=('5616e0c8f57e4d10de5e7f2a85d919d6') build() { # We only need to build the library in this step, dmks will build the module @@ -31,7 +32,7 @@ build() { package() { # Predfine some target folders - SRCDIR="$pkgdir/usr/src/$pkgname-$pkgver" # This one is needed for dkms + SRCDIR="$pkgdir/usr/src/$pkgname-$pkgver-$pkgrel" # This one is needed for dkms LIBNAME=lib$pkgname cd "$pkgname-$pkgver" |