summaryrefslogblamecommitdiff
path: root/packages/curl.sh
blob: 327c575fa79ca7ba5b7bcb6c7be47a16ca14f8d9 (plain) (tree)
1
2
3
4
5
6
7
8




                                


                                                                


















                                                  
#!/bin/bash

function package_build {
    run_git_switch_branch master

    # this need because out of source tree compilation is broken
    run_enable_same_dir_build

    run_autoreconf -i
    run_configure

    run_make
    run_make_install
}

function package_get_source {
    run_git_clone https://github.com/curl/curl.git
}

function package_use {
    env_path "bin"
    env_path "lib"
    env_path "include"
    env_man "share/man"
    env_lib_library_path "lib"
    env_pkg_config_path "lib/pkgconfig"
}