summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-01-13 16:16:47 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-01-13 16:16:47 -0300
commitebf07becb8601529398326043e0030cc5150f8d2 (patch)
treea1f0f765fa2799b679551a72e45d116824119c97 /cross
parentebe7516d78c019b1b1acb31e2421fb6b69e8afde (diff)
cross/mips-linux-api-headers-3.1.6-1
Linux-libre headers for MIPS architecture
Diffstat (limited to 'cross')
-rw-r--r--cross/mips-linux-api-headers/PKGBUILD44
1 files changed, 44 insertions, 0 deletions
diff --git a/cross/mips-linux-api-headers/PKGBUILD b/cross/mips-linux-api-headers/PKGBUILD
new file mode 100644
index 000000000..6afe3f2f0
--- /dev/null
+++ b/cross/mips-linux-api-headers/PKGBUILD
@@ -0,0 +1,44 @@
+# $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=1
+pkgdesc="Kernel headers sanitized for use in userspace"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/libc"
+license=('GPL2')
+provides=("kernel-headers=${pkgver}")
+conflicts=('kernel-headers')
+replaces=('kernel-headers')
+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')