2014-03-19 09:03:21 +01:00
|
|
|
# This shell snippet unsets all variables/functions that can be used in
|
|
|
|
# the package template (excluding subpackages).
|
|
|
|
|
|
|
|
## VARIABLES
|
|
|
|
unset -v pkgname version revision short_desc homepage license maintainer
|
2014-11-01 13:23:54 +01:00
|
|
|
unset -v only_for_archs distfiles checksum build_style nocross broken
|
2014-03-19 09:03:21 +01:00
|
|
|
unset -v configure_script configure_args wrksrc build_wrksrc create_wrksrc
|
2014-05-01 16:05:28 +02:00
|
|
|
unset -v make_cmd make_build_args make_install_args make_build_target make_install_target python_versions
|
2014-03-19 09:03:21 +01:00
|
|
|
unset -v patch_args disable_parallel_build keep_libtool_archives
|
2014-09-30 06:22:11 +02:00
|
|
|
unset -v reverts subpackages makedepends hostmakedepends depends
|
2015-01-18 19:34:20 +01:00
|
|
|
unset -v build_options build_options_default bootstrap repository reverts
|
2014-03-19 09:03:21 +01:00
|
|
|
unset -v CFLAGS CXXFLAGS CPPFLAGS LDFLAGS LD_LIBRARY_PATH
|
|
|
|
unset -v CC CXX CPP GCC LD AR AS RANLIB NM OBJDUMP OBJCOPY STRIP READELF
|
|
|
|
|
|
|
|
# hooks/do-extract/00-distfiles
|
|
|
|
unset -v skip_extraction
|
|
|
|
|
|
|
|
# hooks/post-install/03-strip-and-debug-pkgs
|
2014-11-16 11:52:36 +01:00
|
|
|
unset -v nodebug force_debug_pkgs
|
2014-03-19 09:03:21 +01:00
|
|
|
|
|
|
|
## FUNCTIONS
|
|
|
|
unset -f pre_fetch do_fetch post_fetch
|
|
|
|
unset -f pre_extract do_extract post_extract
|
|
|
|
unset -f pre_configure do_configure post_configure
|
|
|
|
unset -f pre_build do_build post_build
|
|
|
|
unset -f pre_install do_install post_install
|
2014-10-11 10:19:16 +02:00
|
|
|
unset -f do_clean
|