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

           

                                  
                        
                            

                     
                                                                  




                    







                                       
#!/bin/bash

SRCURL=git://git.gnome.org/libxml2

function package_build {
    run_switch_branch master

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

    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"
}