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

SRCURL=git://git.code.sf.net/p/libpng/code

ENV_PATH="bin:lib:include"
ENV_LD_LIBRARY_PATH="lib"
ENV_PKG_CONFIG_PATH="lib/pkgconfig"
ENV_MANPATH="share/man"

BUILD_TYPE="automake"

function package_build {
    run_switch_branch

    run_autoreconf -i
    run_configure

    run_make
    run_make_install
}