Artifact 9fe679842b914bccb7f6a25154d0bc7ec2c55b3e:
- File pkgs/linux-headers — part of check-in [a2946d9090] at 2014-11-06 18:29:03 on branch packages — Fixed header install path (user: rkeene, size: 384) [annotate] [blame] [check-ins using]
#! /usr/bin/env bash
version='3.17.2'
url="https://www.kernel.org/pub/linux/kernel/v3.x/linux-${version}.tar.xz"
domain=core.appfs.rkeene.org
sha256='f9221dc0878955318ab57b8bb5ea1f26cbbaa39359c91d0f6c8de74d68aea796'
function configure() {
:
}
function build() {
make defconfig || die
}
function install() {
make INSTALL_HDR_PATH="${destdir}/${prefix}" headers_install || die
}