mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-01 12:32:24 +08:00
25 lines
431 B
Bash
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'
|
||
|
)
|