25 lines
706 B
Ruby
25 lines
706 B
Ruby
class LinuxHeadersAT44 < Formula
|
|
desc "Header files of the Linux kernel"
|
|
homepage "https://kernel.org/"
|
|
url "https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.4.302.tar.gz"
|
|
sha256 "66271f9d9fce8596622e8154ca0ea160e46b78a5a6c967a15b55855f744d1b0b"
|
|
license "GPL-2.0-only"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "08339aac091f6bef8e643268c0801898e14acd349420f7e08df8c2094efcef8b"
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
depends_on :linux
|
|
|
|
def install
|
|
system "make", "headers_install", "INSTALL_HDR_PATH=#{prefix}"
|
|
rm Dir[prefix/"**/{.install,..install.cmd}"]
|
|
end
|
|
|
|
test do
|
|
assert_match "KERNEL_VERSION", File.read(include/"linux/version.h")
|
|
end
|
|
end
|