diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-01-16 23:25:08 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-01-16 23:25:08 -0300 |
commit | 8b17c0c06c905cf95978e79c8077ac76304a37fd (patch) | |
tree | e82b47f7e4ba1b3b03b924207b93b319fe19df2b /cross/mips64el-unknown-linux-gnu-linux-api-headers | |
parent | 1688695d0e71e57427d1b681340b7f3c47fcd5f2 (diff) |
Got glibc-headers
Diffstat (limited to 'cross/mips64el-unknown-linux-gnu-linux-api-headers')
-rw-r--r-- | cross/mips64el-unknown-linux-gnu-linux-api-headers/PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cross/mips64el-unknown-linux-gnu-linux-api-headers/PKGBUILD b/cross/mips64el-unknown-linux-gnu-linux-api-headers/PKGBUILD new file mode 100644 index 000000000..277890098 --- /dev/null +++ b/cross/mips64el-unknown-linux-gnu-linux-api-headers/PKGBUILD @@ -0,0 +1,36 @@ +# $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 +_target=mips64el-unknown-linux-gnu +_sysroot="/usr/${_target}" + +pkgname=${_target}-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") +md5sums=('d73df15ab1d36fe3c102755d8f42117f' + 'cb42276bca126c676c51d02d74bf7fe7') + +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 ARCH=${ARCH} INSTALL_HDR_PATH=${pkgdir}${_sysroot}/usr headers_install +} |