blob: 7722957efca306646007f07423de8f9d908b917b (
plain) (
tree)
|
|
#!/bin/bash
function package_build {
run_switch_branch master
run_autoreconf -v --install
run_configure
run_make
run_make_install
}
function package_get_source {
run_clone git://people.freedesktop.org/~airlied/virglrenderer
}
function package_use {
env_path "bin"
env_lib_library_path "lib"
env_pkg_config_path "lib/pkgconfig"
env_man "share/man"
}
|