use scallop::{Error, ExecStatus};
use super::make_builtin;
fn run(_args: &[&str]) -> scallop::Result<ExecStatus> {
Err(Error::Base("direct phase call".to_string()))
}
make_builtin!("pkg_config", pkg_config, PKG_CONFIG);
make_builtin!("pkg_info", pkg_info, PKG_INFO);
make_builtin!("pkg_nofetch", pkg_nofetch, PKG_NOFETCH);
make_builtin!("pkg_postinst", pkg_postinst, PKG_POSTINST);
make_builtin!("pkg_postrm", pkg_postrm, PKG_POSTRM);
make_builtin!("pkg_preinst", pkg_preinst, PKG_PREINST);
make_builtin!("pkg_prerm", pkg_prerm, PKG_PRERM);
make_builtin!("pkg_pretend", pkg_pretend, PKG_PRETEND);
make_builtin!("pkg_setup", pkg_setup, PKG_SETUP);
make_builtin!("src_compile", src_compile, SRC_COMPILE);
make_builtin!("src_configure", src_configure, SRC_CONFIGURE);
make_builtin!("src_install", src_install, SRC_INSTALL);
make_builtin!("src_prepare", src_prepare, SRC_PREPARE);
make_builtin!("src_test", src_test, SRC_TEST);
make_builtin!("src_unpack", src_unpack, SRC_UNPACK);