diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-08-26 07:04:58 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-08-26 07:04:58 -0300 |
commit | b1faf2c757d0fc750460b5f1128818a34ce2765e (patch) | |
tree | 5331209571406343fc9dc06b42ca75568da964be /libre/bbswitch-parabola/PKGBUILD | |
parent | 224ff53c78c2e8df8c6ac3f5b84964a9fd228ee3 (diff) | |
parent | c1c1b424ff2d0591dfe4dded84a8bdca530f3d9c (diff) | |
download | abslibre-b1faf2c757d0fc750460b5f1128818a34ce2765e.tar.gz abslibre-b1faf2c757d0fc750460b5f1128818a34ce2765e.tar.bz2 abslibre-b1faf2c757d0fc750460b5f1128818a34ce2765e.zip |
Merge branch 'master' of ssh://lukeshu.com:1863/srv/git/mirror/parabola/abslibre
Diffstat (limited to 'libre/bbswitch-parabola/PKGBUILD')
-rw-r--r-- | libre/bbswitch-parabola/PKGBUILD | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/libre/bbswitch-parabola/PKGBUILD b/libre/bbswitch-parabola/PKGBUILD index 1b0dc8bd6..209f58cec 100644 --- a/libre/bbswitch-parabola/PKGBUILD +++ b/libre/bbswitch-parabola/PKGBUILD @@ -6,36 +6,31 @@ # Contributor: Luke Shumaker <lukeshu@sbcglobal.net> # Contributor: Márcio Silva <coadde@parabola.nu> -# Kernel info _basekernel=3.16 _kernelname= -# Source info _pkgname=bbswitch +pkgname=${_pkgname}-parabola${_kernelname} pkgver=0.8 +_extramodules=extramodules-${_basekernel}${_kernelname} +pkgrel=15.1 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus laptops (built for the linux-libre${_kernelname} kernel package)" +arch=('i686' 'x86_64' 'mips64el') url="http://github.com/Bumblebee-Project/bbswitch" license=('GPL') -source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz") -md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807') - -# Package info -pkgrel=15.1 -arch=('i686' 'x86_64' 'mips64el') -install='kmod.install' # Generic (you shouldn't have to modify any of these variables) -pkgname=${_pkgname}-parabola${_kernelname} _toohigh=$(IFS=. read a b <<<$_basekernel; echo $a.$((b+1))) -_extramodules=extramodules-${_basekernel}${_kernelname} depends=("linux-libre${_kernelname}>=${_basekernel}" "linux-libre${_kernelname}<${_toohigh}") makedepends=("linux-libre${_kernelname}-headers>=${_basekernel}" "linux-libre${_kernelname}-headers<${_toohigh}") -replaces=("${_pkgname}${_kernelname}" "${_pkgname}-libre${_kernelname}") # for Arch-compatibility -conflicts=("${_pkgname}${_kernelname}" "${_pkgname}-libre${_kernelname}") # for Arch-compatibility -provides=("${_pkgname}${_kernelname}=${pkgver}") # for Arch-compatibility -if [[ -n "${_kernelname}" ]]; then - provides+=("${_pkgname}-parabola=${pkgver}") # pkgname without _kernelname -fi + +replaces=("${_pkgname}${_kernelname}" "${_pkgname}-libre${_kernelname}") +conflicts=("${_pkgname}${_kernelname}" "${_pkgname}-libre${_kernelname}") +provides=("${_pkgname}${_kernelname}=${pkgver}") + +install='kmod.install' +source=("https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz") +md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807') build() { cd "${srcdir}/${_pkgname}-${pkgver}" @@ -51,7 +46,7 @@ package() { # Set the correct extramodules directory for install cp -f "${startdir}/${install}" "${startdir}/${install}.pkg" true && install=${install}.pkg - sed -r "s/(_extramodules=).*/\1${_extramodules}/" -i "${startdir}/${install}" + sed -i "s/^_EXTRAMODULES=$/_EXTRAMODULES="${_extramodules}"/" "${startdir}/${install}" # Actually install install -Dm644 bbswitch.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko |