summaryrefslogtreecommitdiff
path: root/packages/libxml2.sh
blob: c3df21e02675bdbd7e44af0e3213bf48eb3ade3e (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.gnome.org/libxml2

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

CONFIGURE_FLAGS="--with-python-install-dir="${bindir}/lib/python""

function package_build {
    run_switch_branch

    run_autoreconf -i
    run_configure

    run_make
    run_make_install
}