New comment by Johnnynator on void-packages repository https://github.com/void-linux/void-packages/pull/12516#issuecomment-502888866 Comment: Can you apply this patch and afterward squash all your commits into one? ```diff diff --git a/srcpkgs/aerc/template b/srcpkgs/aerc/template index 42f4c0303f..d47dcec35b 100644 --- a/srcpkgs/aerc/template +++ b/srcpkgs/aerc/template @@ -2,9 +2,8 @@ pkgname=aerc version=0.1.2 revision=1 -archs="i686 x86_64 x86_64-musl" -build_style=gnu-makefile -hostmakedepends="go scdoc git" +build_style=go +hostmakedepends="scdoc git" depends="python3-colorama" short_desc="Terminal email client" maintainer="shtayerc " @@ -13,8 +12,16 @@ homepage="https://aerc-mail.org" distfiles="https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz" checksum=37b58c32dbaa4395deb12974b92ed0725cb248e348b7f45bdc4354f548cbf4be +do_configure() { + : +} + +do_build() { + make ${makejobs} PREFIX=/usr +} + do_install() { - make STRIP=true PREFIX=/usr install + make STRIP=true PREFIX=/usr DESTDIR=${DESTDIR} install } post_install() { ```