diff options
author | Carlo Landmeter <clandmeter@alpinelinux.org> | 2018-12-08 01:11:47 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2018-12-08 01:12:28 +0000 |
commit | eade014bef841970d939b88d969e941bacdcec01 (patch) | |
tree | 0bba0d0522efa630efc629213617a7e8707907dc /community/fzf | |
parent | f17d168381674710301321a04a3fe8b74b59f108 (diff) | |
download | aports-eade014bef841970d939b88d969e941bacdcec01.tar.bz2 aports-eade014bef841970d939b88d969e941bacdcec01.tar.xz |
community/fzf: disable on armhf. fails to build.
Diffstat (limited to 'community/fzf')
-rw-r--r-- | community/fzf/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/fzf/APKBUILD b/community/fzf/APKBUILD index b573b24ef7..044c17a20f 100644 --- a/community/fzf/APKBUILD +++ b/community/fzf/APKBUILD @@ -5,7 +5,7 @@ pkgver=0.17.5 pkgrel=0 pkgdesc="A command-line fuzzy finder" url="https://github.com/junegunn/fzf" -arch="all !s390x !aarch64" +arch="all !s390x !aarch64 !armhf" license="MIT" makedepends="go glide bash tmux" subpackages=" @@ -20,6 +20,7 @@ prepare() { default_prepare cd "$builddir" export GOPATH="$startdir" + HOME=$GOPATH glide install } |