diff options
author | Oliver Smith <ollieparanoid@bitmessage.ch> | 2018-09-20 06:57:20 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-09-24 10:19:24 +0300 |
commit | 9d9f981a2c421f44db3ae66b90293202748eb9f3 (patch) | |
tree | 8790d020333778e4441e1160ef2b17fb6d8e7a0d /community/nnn | |
parent | 993843fcca32a014f8c0aa87195c4dbed36fdb16 (diff) | |
download | aports-9d9f981a2c421f44db3ae66b90293202748eb9f3.tar.bz2 aports-9d9f981a2c421f44db3ae66b90293202748eb9f3.tar.xz |
aports: add support for armv7 [skip ci]
This makes it possible to provide armv7 as additional architecture in
Alpine, next to armhf. See the discussion in this ML thread:
<https://lists.alpinelinux.org/alpine-devel/6271.html>
It's done by adding armv7 next to armhf in the arch line and also
!armv7 where the arch line said !armhf. The following script was used:
Diffstat (limited to 'community/nnn')
-rw-r--r-- | community/nnn/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/nnn/APKBUILD b/community/nnn/APKBUILD index 552174e813..340b24066b 100644 --- a/community/nnn/APKBUILD +++ b/community/nnn/APKBUILD @@ -5,7 +5,7 @@ pkgver=1.9 pkgrel=0 pkgdesc="The missing terminal file browser for X" url="https://github.com/jarun/nnn" -arch="all !armhf" # armhf: fails to build +arch="all !armhf !armv7" # armhf: fails to build license="BSD-2-Clause" makedepends="ncurses-dev readline-dev" options="!check" # no tests provided and `nnn -v` requires tty |