2014-03-19 08:03:21 +00:00
|
|
|
# This shell snippet unsets all variables/functions that can be used in
|
|
|
|
# the package template (excluding subpackages).
|
|
|
|
|
|
|
|
## VARIABLES
|
2018-05-04 14:46:46 +00:00
|
|
|
unset -v pkgname version revision short_desc homepage license maintainer
|
2019-03-14 21:45:47 +00:00
|
|
|
unset -v archs distfiles checksum build_style build_helper nocross broken
|
2014-03-19 08:03:21 +00:00
|
|
|
unset -v configure_script configure_args wrksrc build_wrksrc create_wrksrc
|
2017-11-19 19:50:29 +00:00
|
|
|
unset -v make_build_args make_check_args make_install_args
|
|
|
|
unset -v make_build_target make_check_target make_install_target
|
2019-01-21 12:11:46 +00:00
|
|
|
unset -v make_cmd meson_cmd gem_cmd fetch_cmd
|
2019-01-19 15:17:29 +00:00
|
|
|
unset -v python_version stackage
|
|
|
|
unset -v cmake_builddir meson_builddir
|
|
|
|
unset -v meson_crossfile
|
|
|
|
unset -v gemspec
|
|
|
|
unset -v go_import_path go_package go_mod_mode
|
2017-03-07 09:34:38 +00:00
|
|
|
unset -v patch_args disable_parallel_build keep_libtool_archives make_use_env
|
2017-11-18 12:14:25 +00:00
|
|
|
unset -v reverts subpackages makedepends hostmakedepends checkdepends depends restricted
|
2015-11-17 15:47:19 +00:00
|
|
|
unset -v nopie build_options build_options_default bootstrap repository reverts
|
2017-03-08 16:28:31 +00:00
|
|
|
unset -v CFLAGS CXXFLAGS FFLAGS CPPFLAGS LDFLAGS LD_LIBRARY_PATH
|
2014-03-19 08:03:21 +00:00
|
|
|
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
|
2015-11-17 14:36:51 +00:00
|
|
|
unset -v nodebug
|
2014-03-19 08:03:21 +00:00
|
|
|
|
2019-05-07 13:33:47 +00:00
|
|
|
# build-helpers/gir.sh for cross builds
|
|
|
|
unset -v GIR_EXTRA_LIBS_PATH GIR_EXTRA_OPTIONS
|
|
|
|
|
2014-03-19 08:03:21 +00:00
|
|
|
## FUNCTIONS
|
|
|
|
unset -f pre_fetch do_fetch post_fetch
|
|
|
|
unset -f pre_extract do_extract post_extract
|
2019-02-26 12:52:30 +00:00
|
|
|
unset -f pre_patch do_patch post_patch
|
2014-03-19 08:03:21 +00:00
|
|
|
unset -f pre_configure do_configure post_configure
|
|
|
|
unset -f pre_build do_build post_build
|
2017-11-18 12:14:25 +00:00
|
|
|
unset -f pre_check do_check post_check
|
2014-03-19 08:03:21 +00:00
|
|
|
unset -f pre_install do_install post_install
|
2014-10-11 08:19:16 +00:00
|
|
|
unset -f do_clean
|