summaryrefslogblamecommitdiff
path: root/packages/libxml2.sh
blob: 84cb3912258c32da004865be3ede017152c834b5 (plain) (tree)
1
2
3
4
5
6
7
8
9

           

                                  




                                   
                        
                            

                     
                                                                  



                    
#!/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"

function package_build {
    run_switch_branch master

    run_autoreconf -i
    run_configure --with-python-install-dir="${bindir}/lib/python"

    run_make
    run_make_install
}