build.sh: Rename AZB_PKG_LIST

pull/23/head
Jesus Alvarez 11 years ago
parent 82d6a7c6a7
commit 41e59d84ab
  1. 10
      build.sh

@ -5,7 +5,7 @@
# This script requires clean-chroot-manager (https://github.com/graysky2/clean-chroot-manager) # This script requires clean-chroot-manager (https://github.com/graysky2/clean-chroot-manager)
# #
# Defaults, don't edit these. # Defaults, don't edit these.
AZB_PKG_LIST="spl-utils-git spl-git zfs-utils-git zfs-git" AZB_GIT_PKG_LIST="spl-utils-git spl-git zfs-utils-git zfs-git"
AZB_UPDATE_PKGBUILDS="" AZB_UPDATE_PKGBUILDS=""
AZB_UPDATE_TEST_PKGBUILDS="" AZB_UPDATE_TEST_PKGBUILDS=""
AZB_BUILD=0 AZB_BUILD=0
@ -57,7 +57,7 @@ sed_escape_input_string() {
} }
build_sources() { build_sources() {
for PKG in $AZB_PKG_LIST; do for PKG in $AZB_GIT_PKG_LIST; do
msg "Building source for $PKG"; msg "Building source for $PKG";
run_cmd "cd \"$PWD/$PKG\"" run_cmd "cd \"$PWD/$PKG\""
run_cmd "makepkg -Sfc" run_cmd "makepkg -Sfc"
@ -174,7 +174,7 @@ update_git_pkgbuilds() {
fi fi
# Update the sums of the files # Update the sums of the files
for PKG in $AZB_PKG_LIST; do for PKG in $AZB_GIT_PKG_LIST; do
run_cmd "updpkgsums $PKG/PKGBUILD" run_cmd "updpkgsums $PKG/PKGBUILD"
done done
} }
@ -226,7 +226,7 @@ if [[ $AZB_BUILD_TEST == 1 ]]; then
run_cmd "sudo ccm32 u" run_cmd "sudo ccm32 u"
run_cmd "sudo ccm64 u" run_cmd "sudo ccm64 u"
fi fi
for PKG in $AZB_PKG_LIST; do for PKG in $AZB_GIT_PKG_LIST; do
msg "Building $PKG..." msg "Building $PKG..."
run_cmd "cd \"$PWD/$PKG\"" run_cmd "cd \"$PWD/$PKG\""
# run_cmd "sudo ccm32 t" # run_cmd "sudo ccm32 t"
@ -245,7 +245,7 @@ if [[ $AZB_BUILD == 1 ]]; then
run_cmd "sudo ccm32 u" run_cmd "sudo ccm32 u"
run_cmd "sudo ccm64 u" run_cmd "sudo ccm64 u"
fi fi
for PKG in $AZB_PKG_LIST; do for PKG in $AZB_GIT_PKG_LIST; do
msg "Building $PKG..." msg "Building $PKG..."
run_cmd "cd \"$PWD/$PKG\"" run_cmd "cd \"$PWD/$PKG\""
run_cmd "sudo ccm32 s" run_cmd "sudo ccm32 s"

Loading…
Cancel
Save