summaryrefslogtreecommitdiff
path: root/pcr/bbswitch-lts/PKGBUILD
blob: bc25f341d96841e4b83e15cfaa1933d9644f714b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Maintainer (AUR): e5ten <e5ten.arch@gmail.com>
# Contributor (AUR): Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor (AUR): M0Rf30
# Contributor (AUR): Samsagax <samsagax@gmail.com>
# Contributor (Hyperbola): André Silva <emulatorman@hyperbola.info>
# Contributor (Hyperbola): Márcio Silva <coadde@hyperbola.info>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>

_basekernel=4.19.33_gnu-1

pkgname=bbswitch-lts
pkgver=0.8
_extramodules=extramodules-${_basekernel%.*}-lts
pkgrel=47
pkgrel+=.parabola1.basekernel${_basekernel%_*}
pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus laptops"
pkgdesc+=" (built for the linux-libre-lts kernel package)"
arch=('x86_64')
arch+=('i686')
url="http://github.com/Bumblebee-Project/bbswitch"
license=('GPL')
depends=(linux-libre-lts=${_basekernel%-*})
makedepends=(linux-libre-lts-headers=${_basekernel%-*} git libelf)
source=("${pkgname%-*}-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz")
sha256sums=('76cabd3f734fb4fe6ebfe3ec9814138d0d6f47d47238521ecbd6a986b60d1477')

build() {
  cd ${pkgname%-*}-${pkgver}
  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
  make KDIR=/lib/modules/${_kernver}/build
}

package() {
  cd ${pkgname%-*}-${pkgver}
  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
  find "${pkgdir}" -name '*.ko' -exec xz {} +
}