summaryrefslogtreecommitdiff
path: root/packages/curl.sh
blob: e92d673e1a64e359d39ef3114edf83253c0eeba8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash

SRCURL=https://github.com/curl/curl.git

function package_build {
    run_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_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"
}