diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2019-03-21 13:20:24 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2019-03-21 13:21:38 +0100 |
commit | 3637091423eb83f134350c13c398eeee8b5b2aca (patch) | |
tree | 46f03036fc5d6e4f8b65f5db6f47bf8e81bebd55 /pcr/bbswitch-lts | |
parent | 18cd7ebfd6586253f2e7c0b264950f643c24e0d4 (diff) | |
download | abslibre-3637091423eb83f134350c13c398eeee8b5b2aca.tar.gz abslibre-3637091423eb83f134350c13c398eeee8b5b2aca.tar.bz2 abslibre-3637091423eb83f134350c13c398eeee8b5b2aca.zip |
pcr/bbswitch-lts: rebuilt
Diffstat (limited to 'pcr/bbswitch-lts')
-rw-r--r-- | pcr/bbswitch-lts/PKGBUILD | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/pcr/bbswitch-lts/PKGBUILD b/pcr/bbswitch-lts/PKGBUILD index f25a33a73..9eac2d5b9 100644 --- a/pcr/bbswitch-lts/PKGBUILD +++ b/pcr/bbswitch-lts/PKGBUILD @@ -6,39 +6,33 @@ # Contributor (Hyperbola): Márcio Silva <coadde@hyperbola.info> # Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> -_basekernel=4.19 +_basekernel="$(pacman -Sp --print-format '%v' linux-libre-lts)" -_pkgname=bbswitch pkgname=bbswitch-lts pkgver=0.8 -_extramodules=extramodules-${_basekernel}-lts -pkgrel=46 -pkgrel+=.parabola1.basekernel${_basekernel} +_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') - -# Generic (you shouldn't have to modify any of these variables) -_toohigh=$(IFS=. read a b <<<$_basekernel; echo $a.$((b+1))) -depends=("linux-libre-lts>=${_basekernel}" "linux-libre-lts<${_toohigh}") -makedepends=("linux-libre-lts-headers>=${_basekernel}" "linux-libre-lts-headers<${_toohigh}" "linux-libre-lts>=${_basekernel}" "linux-libre-lts<${_toohigh}") -makedepends+=('libelf') - -provides=("${_basename}") -source=("${_basename}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz") +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} + cd ${pkgname%-*}-${pkgver} _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" make KDIR=/lib/modules/${_kernver}/build } package() { - cd ${_pkgname}-${pkgver} + cd ${pkgname%-*}-${pkgver} install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko find "${pkgdir}" -name '*.ko' -exec xz {} + } + |