diff options
author | Allan McRae <allan@archlinux.org> | 2015-05-12 14:10:24 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2015-05-16 06:10:42 +0200 |
commit | 83b734a103016f08e63e03e1e803c327584e3721 (patch) | |
tree | b884c9ab8549f6e3fec562aaadd84ef1850ccfb7 /scripts/Makefile.am | |
parent | d5536d3eb382fa8a00d5d5820c3d0c947fb90e33 (diff) | |
download | pacman-83b734a103016f08e63e03e1e803c327584e3721.tar.gz pacman-83b734a103016f08e63e03e1e803c327584e3721.tar.xz |
libmakepkg: move functions for extracting pkgbuild attributes
Also rename some functions for clarity:
funcgrep -> grep_function
extract_global_var -> extract_global_variable
extract_function_var -> extract_function_variable
pkgbuild_get_attribute -> get_pkgbuild_attribute
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/Makefile.am')
-rw-r--r-- | scripts/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 57468f93..3dfd903a 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -47,7 +47,8 @@ LIBMAKEPKGDIRS = \ LIBMAKEPKG = \ libmakepkg/util/message.sh \ - libmakepkg/util/option.sh + libmakepkg/util/option.sh \ + libmakepkg/util/pkgbuild.sh LIBMAKEPKG_IN = \ libmakepkg/lint_package.sh \ |