From 28529fefc594bf968ca30905a5a2d6c9ae1d6f3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 23 Aug 2014 01:36:15 -0300 Subject: add modifications from coadde and lukeshu contributions for linux-libre* and dependencies --- libre/tp_smapi-parabola/PKGBUILD | 81 ++++++++++++++++++++++++++++++++++++ libre/tp_smapi-parabola/kmod.install | 14 +++++++ 2 files changed, 95 insertions(+) create mode 100644 libre/tp_smapi-parabola/PKGBUILD create mode 100644 libre/tp_smapi-parabola/kmod.install (limited to 'libre/tp_smapi-parabola') diff --git a/libre/tp_smapi-parabola/PKGBUILD b/libre/tp_smapi-parabola/PKGBUILD new file mode 100644 index 000000000..3f1818f6b --- /dev/null +++ b/libre/tp_smapi-parabola/PKGBUILD @@ -0,0 +1,81 @@ +# $Id: PKGBUILD 116831 2014-08-04 07:32:08Z tpowa $ +# Maintainer (Arch): Lukas Fleischer +# Contributor (Arch): xduugu +# Contributor (Arch): nh2 +# Contributor (Arch): Steven Davidovitz +# Contributor (Arch): Nick B +# Contributor (Arch): Christof Musik +# Contributor (Arch): Stefan Rupp +# Contributor (Arch): Ignas Anikevicius +# Maintainer: André Silva +# Contributor: Luke Shumaker +# Contributor: Márcio Silva + +# Kernel info +_basekernel=3.16 +_kernelname= + +# Source info +_pkgname=tp_smapi +pkgver=0.41 +pkgdesc="Modules for ThinkPad's SMAPI functionality (built for the linux-libre${_kernelname} kernel package)" +url='https://github.com/evgeni/tp_smapi' +license=('GPL') +source=("https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz") +md5sums=('63c683415c764568f6bf17c7eabe4752') + +# Package info +pkgrel=53.${_basekernel/./} +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}") # for Arch-compatability +conflicts=("${_pkgname}${_kernelname}") # for Arch-compatability +provides=( "${_pkgname}${_kernelname}=${pkgver}") # for Arch-compatability +if [[ -n "${_kernelname}" ]]; then + provides+=("${_pkgname}-parabola=${pkgver}") # pkgname without _kernelname +fi + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + + sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \ + -e "s#^(KBASE\s*:=).*\$#\1 /usr/lib/modules/${_kernver}#" Makefile + + make HDAPS=1 +} + +package() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + + # 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 + make -C "/usr/lib/modules/${_kernver}/build" \ + INSTALL_MOD_PATH="${pkgdir}/usr" \ + M="${srcdir}/${_pkgname}-${pkgver}" modules_install + + cd "${pkgdir}/usr/lib/modules" + mv "${_kernver}/extra" "${_extramodules}" + rmdir "${_kernver}" + + # compress kernel modules + find "${pkgdir}" -name "*.ko" -exec gzip -9 {} + + + # load module on startup + install -dm 755 "${pkgdir}/usr/lib/modules-load.d" + echo ${_pkgname} > "${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf" +} diff --git a/libre/tp_smapi-parabola/kmod.install b/libre/tp_smapi-parabola/kmod.install new file mode 100644 index 000000000..d4bd8cb34 --- /dev/null +++ b/libre/tp_smapi-parabola/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-2-g168b