From 0df21d831f3d16cf15fcb07b55c962e88fc85143 Mon Sep 17 00:00:00 2001 From: mar77i Date: Thu, 25 Jun 2015 10:50:01 +0200 Subject: automatically apply patches in source array --- PKGBUILD | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index b68e76f..92713c4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -25,8 +25,8 @@ pkgver() { } prepare() { + local file cd "${srcdir}/${_pkgname}" - patch -p1 -i ../scrollback.patch # http://st.suckless.org/patches/st-scrollback.diff sed \ -e '/char font/s/= .*/= "Fixed:pixelsize=13:style=SemiCondensed";/' \ -e '/char worddelimiters/s/= .*/= " '"'"'`\\\"()[]{}<>|";/' \ @@ -39,6 +39,13 @@ prepare() { -e 's/_BSD_SOURCE/_DEFAULT_SOURCE/' \ -i config.mk sed '/@tic/d' -i Makefile + for file in "${source[@]}"; do + if [[ "$file" != *.diff ]]; then + continue + fi + # add all patches present in source array + patch -Np1 <"$SRCDEST/$file" + done } build() { -- cgit v1.2.3