# Maintainer: endorfina # Contributor: Francois Menning # Contributor: mwawrzyniak # Contributor: PlusMinus pkgname=evdi pkgver=1.14.4 pkgrel=0 pkgdesc="A Linux® kernel module that enables management of multiple screens." arch=('i686' 'x86_64') url="https://github.com/DisplayLink/evdi" license=('GPL') depends=(glibc dkms libdrm base-devel) changelog=$pkgname.Changelog source=(https://github.com/DisplayLink/evdi/archive/v$pkgver/$pkgname-$pkgver.tar.gz) sha256sums=('b2323f51e670ff08b07fa2412de104ed5389961df53dd4818d75a6e7431cf1ef') build() { # We only need to build the library in this step, dkms will build the module cd "$pkgname-$pkgver/library" make } package() { cd "$pkgname-$pkgver" install -Dm0755 library/lib$pkgname.so "$pkgdir/usr/lib/lib$pkgname.so" SRCDIR="$pkgdir/usr/src/$pkgname-$pkgver" # This one is needed for dkms install -d "$SRCDIR" install -Dm0755 module/* "$SRCDIR" }