pkgbuilds/fakeroot-tcp/buildbot.update.d/config.sh

23 lines
423 B
Bash
Raw Normal View History

2020-02-01 16:13:48 +08:00
#!/bin/bash
# buildbot update hook for aur packages
PKGNAME='fakeroot-tcp'
PKGBUILD='PKGBUILD'
# prepare upstream source
prepare() {
2020-02-01 16:39:23 +08:00
sed -i 's/^\([ \t]*\)po4a/\1\/usr\/bin\/vendor_perl\/po4a/g' PKGBUILD
2020-02-01 16:13:48 +08:00
}
# 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'
)