sys-info-extended 1.2.0

This crate is a fork of https://crates.io/crates/sys-info crate and extended version of it.
Documentation
extern crate cc;

use std::env;

fn main() {
    let target = env::var("TARGET").unwrap();
    let target_os = target.split('-').nth(2).unwrap();

    let mut builder = cc::Build::new();
    match target_os {
        "linux" | "android" | "androideabi" => builder.file("c/linux.c"),
        "illumos" | "solaris" => {
            println!("cargo:rustc-link-lib=kstat");
            return;
        }
        "darwin" | "ios" => builder.file("c/darwin.c"),
        "windows" => {
            // GCC linker (ld.exe) wants system libs specified after the source file.
            // MSVC linker (link.exe) doesn't seem to care.
            builder.file("c/windows.c")
                   .compile("info");
            println!("cargo:rustc-flags=-l psapi");
            println!("cargo:rustc-flags=-l powrprof");
            return;
        },
        "freebsd" => {
            println!("cargo:rustc-flags=-l pthread");
            builder.file("c/freebsd.c")
        },
        "openbsd" => {
            println!("cargo:rustc-flags=-l pthread");
            builder.file("c/openbsd.c")
        },
        "netbsd" => {
            println!("cargo:rustc-flags=-l pthread");
            builder.file("c/netbsd.c")
        },
	"haiku" => {
	    builder.file("c/haiku.c")
	},
        _ => panic!("unsupported system: {}", target_os)
    };
    builder.compile("info");
}