diff options
author | morganamilo <morganamilo@gmail.com> | 2019-01-30 19:07:20 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-01-31 01:02:37 +0100 |
commit | 75aae126c423dcc9b215aef57daff9e7bd8f5f6b (patch) | |
tree | 090e8f87eadd5eacfb3c19b5b1696ad02383b1a7 /scripts/libmakepkg/integrity | |
parent | 6cf0548128d6d1a839ba93997b017661520395be (diff) | |
download | pacman-75aae126c423dcc9b215aef57daff9e7bd8f5f6b.tar.gz pacman-75aae126c423dcc9b215aef57daff9e7bd8f5f6b.tar.xz |
libmakepkg: centralise random arrays of pkgbuild variables
Refactor many of the different arrays of pkgbuild variables
into scripts/libmakepkg/util/schema.sh.in.
Signed-off-by: morganamilo <morganamilo@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/libmakepkg/integrity')
-rw-r--r-- | scripts/libmakepkg/integrity/generate_checksum.sh.in | 1 | ||||
-rw-r--r-- | scripts/libmakepkg/integrity/verify_checksum.sh.in | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/scripts/libmakepkg/integrity/generate_checksum.sh.in b/scripts/libmakepkg/integrity/generate_checksum.sh.in index 57ef46ff..63cdc4d6 100644 --- a/scripts/libmakepkg/integrity/generate_checksum.sh.in +++ b/scripts/libmakepkg/integrity/generate_checksum.sh.in @@ -25,6 +25,7 @@ LIBRARY=${LIBRARY:-'@libmakepkgdir@'} source "$LIBRARY/util/message.sh" source "$LIBRARY/util/pkgbuild.sh" +source "$LIBRARY/util/schema.sh" generate_one_checksum() { local integ=$1 arch=$2 sources numsrc indentsz idx diff --git a/scripts/libmakepkg/integrity/verify_checksum.sh.in b/scripts/libmakepkg/integrity/verify_checksum.sh.in index 532e0693..ec61b16d 100644 --- a/scripts/libmakepkg/integrity/verify_checksum.sh.in +++ b/scripts/libmakepkg/integrity/verify_checksum.sh.in @@ -25,6 +25,7 @@ LIBRARY=${LIBRARY:-'@libmakepkgdir@'} source "$LIBRARY/util/message.sh" source "$LIBRARY/util/pkgbuild.sh" +source "$LIBRARY/util/schema.sh" check_checksums() { local integ a |