diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-08-24 19:40:36 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-08-24 19:40:36 -0300 |
commit | e8319462e19058a8d28bc77f03b6379af7cb9e08 (patch) | |
tree | e3698fd0dc40546e8390bded82355d149055bebc /pcr/tp_smapi-parabola-grsec/PKGBUILD | |
parent | a440b2cc73827e1c46a817f60532f11392273753 (diff) | |
download | abslibre-e8319462e19058a8d28bc77f03b6379af7cb9e08.tar.gz abslibre-e8319462e19058a8d28bc77f03b6379af7cb9e08.tar.bz2 abslibre-e8319462e19058a8d28bc77f03b6379af7cb9e08.zip |
{{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
Diffstat (limited to 'pcr/tp_smapi-parabola-grsec/PKGBUILD')
-rw-r--r-- | pcr/tp_smapi-parabola-grsec/PKGBUILD | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/pcr/tp_smapi-parabola-grsec/PKGBUILD b/pcr/tp_smapi-parabola-grsec/PKGBUILD new file mode 100644 index 000000000..79dc1f2ea --- /dev/null +++ b/pcr/tp_smapi-parabola-grsec/PKGBUILD @@ -0,0 +1,81 @@ +# $Id: PKGBUILD 116831 2014-08-04 07:32:08Z tpowa $ +# Maintainer (Arch): Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor (Arch): xduugu +# Contributor (Arch): nh2 +# Contributor (Arch): Steven Davidovitz <steviedizzle ð gmail đ com> +# Contributor (Arch): Nick B <Shirakawasuna ð gmail đ com> +# Contributor (Arch): Christof Musik <christof ð senfdax đ de> +# Contributor (Arch): Stefan Rupp <archlinux ð stefanrupp đ de> +# Contributor (Arch): Ignas Anikevicius <anikevicius ð gmail đ com> +# Maintainer: André Silva <emulatorman@parabola.nu> +# Contributor: Luke Shumaker <lukeshu@sbcglobal.net> +# Contributor: Márcio Silva <coadde@parabola.nu> + +# Kernel info +_basekernel=3.15 +_kernelname=-grsec + +# 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=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)" + + 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" +} |