From e8319462e19058a8d28bc77f03b6379af7cb9e08 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Sun, 24 Aug 2014 19:40:36 -0300 Subject: {{bbswitch,lirc,vhba-module}-parabola-{lts,grsec},{acpi_call,tp_smapi}-parabola-grsec}: move to [pcr] because those packages aren't official on Arch yet --- pcr/bbswitch-parabola-grsec/PKGBUILD | 59 ++++++++++++++++++++++++++++++++ pcr/bbswitch-parabola-grsec/kmod.install | 14 ++++++++ 2 files changed, 73 insertions(+) create mode 100644 pcr/bbswitch-parabola-grsec/PKGBUILD create mode 100644 pcr/bbswitch-parabola-grsec/kmod.install (limited to 'pcr/bbswitch-parabola-grsec') diff --git a/pcr/bbswitch-parabola-grsec/PKGBUILD b/pcr/bbswitch-parabola-grsec/PKGBUILD new file mode 100644 index 000000000..393ef3d73 --- /dev/null +++ b/pcr/bbswitch-parabola-grsec/PKGBUILD @@ -0,0 +1,59 @@ +# $Id: PKGBUILD 116821 2014-08-04 07:12:07Z tpowa $ +# Maintainer (Arch): Sven-Hendrik Haase +# Contributor (Arch): M0Rf30 +# Contributor (Arch): Samsagax +# Maintainer: André Silva +# Contributor: Luke Shumaker +# Contributor: Márcio Silva + +# Kernel info +_basekernel=3.15 +_kernelname=-grsec + +# Source info +_pkgname=bbswitch +pkgver=0.8 +pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus laptops (built for the linux-libre${_kernelname} kernel package)" +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=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 + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + + make KDIR=/lib/modules/${_kernver}/build +} + +package() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + # 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}" + + # Actually install + install -Dm644 bbswitch.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko + gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko" +} diff --git a/pcr/bbswitch-parabola-grsec/kmod.install b/pcr/bbswitch-parabola-grsec/kmod.install new file mode 100644 index 000000000..d4bd8cb34 --- /dev/null +++ b/pcr/bbswitch-parabola-grsec/kmod.install @@ -0,0 +1,14 @@ +post_install() { + _extramodules=THIS_IS_AUTOMATICALLY_SET_BY_PKGBUILD + depmod $(cat /usr/lib/modules/${_extramodules}/version) +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim: ts=2 sw=2 et: -- cgit v1.2.3-54-g00ecf