pkgbuilds/yay/buildbot.update.d/config.sh
Archlinux-Jerry Build Bot d456c63482 change: aur update hooks
2019-10-24 12:44:39 +08:00

25 lines
431 B
Bash

#!/bin/bash
# buildbot update hook for aur packages
PKGNAME='yay'
PKGBUILD='PKGBUILD'
# prepare upstream source
prepare() {
# sed -i "s/^arch=.*$/arch=('aarch64')/g" PKGBUILD
# git apply 0001.patch
true
}
# which files to include, overrides exclude_files below
INCLUDE_FILES=(
# 'PKGBUILD'
# '.gitignore'
)
# which files to exclude, use '*' and '.*' to exclude all
EXCLUDE_FILES=(
'.SRCINFO'
'.git'
)