summaryrefslogtreecommitdiff
path: root/cross/mips-linux-api-headers/PKGBUILD
blob: bff8c272b0e6fb8715a9f1ee1702b529631d7c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# $Id: PKGBUILD 145918 2012-01-04 01:25:12Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>

# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
export ARCH=mips
_sysroot="/usr/lib/${ARCH}"

pkgname=mips-linux-api-headers
pkgver=3.1.6
_basekernel=3.1
pkgrel=2
pkgdesc="Kernel headers sanitized for use in userspace"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/libc"
license=('GPL2')
source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-libre/linux-${_basekernel}-libre.tar.xz"
        "http://linux-libre.fsfla.org/pub/linux-libre/releases/${pkgver}-libre/patch-${_basekernel}-libre-${pkgver}-libre.xz")

build() {
  cd "${srcdir}/linux-${_basekernel}"

  if [ "${_basekernel}" != "${pkgver}" ]; then
    patch -Np1 -i "${srcdir}/patch-${_basekernel}-libre-${pkgver}-libre"
  fi

  make mrproper
  make headers_check
}

package() {
  cd "${srcdir}/linux-${_basekernel}"
  make INSTALL_HDR_PATH=${pkgdir}${_sysroot} headers_install

  # use headers from libdrm
  rm -rf ${pkgdir}${_sysroot}/include/drm
  
  # clean-up unnecessary files generated during install
  find ${pkgdir} -name .install -or -name ..install.cmd | xargs rm -f
}
md5sums=('d73df15ab1d36fe3c102755d8f42117f'
         'cb42276bca126c676c51d02d74bf7fe7')