diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-06-09 19:39:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-06-16 15:54:54 +0200 |
commit | 5e2998b09e0c4c442d1bf016c4b4acb96fb5b825 (patch) | |
tree | ed1b2af530ee60b7ed7ced8b34f46d16a8b52fa8 /community/syncthing13 | |
parent | 39387094ff3f2efffeffb9fff15bef1ca449b000 (diff) | |
download | aports-5e2998b09e0c4c442d1bf016c4b4acb96fb5b825.tar.bz2 aports-5e2998b09e0c4c442d1bf016c4b4acb96fb5b825.tar.xz |
community/syncthing13: enable build on ppc64le
enabling syncthing13 package on ppc64le as go is available.
Also had to remove a tar.gz before using ln command, otherwise it
was failing the build in ppc64le.
(cherry picked from commit 557c09644508064269207d77489446d268be81c9)
Diffstat (limited to 'community/syncthing13')
-rw-r--r-- | community/syncthing13/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/syncthing13/APKBUILD b/community/syncthing13/APKBUILD index 410447ae59..a2a0eba3cf 100644 --- a/community/syncthing13/APKBUILD +++ b/community/syncthing13/APKBUILD @@ -8,7 +8,7 @@ pkgver=0.13.10 pkgrel=1 pkgdesc="Open Source Continuous File Synchronization" url="http://syncthing.net/" -arch="all !ppc64le" +arch="all" license="MPLv2" pkgusers="$_realname" pkggroups="$_realname" @@ -31,6 +31,7 @@ prepare() { # fix IPv6 definition errors on s390x, remove when upstream # updates vendor manifest! rm -r "$builddir"/$_realname/vendor/golang.org/x/net + rm "$srcdir"/net-*.tar.gz ln -s "$srcdir"/net-* "$builddir"/$_realname/vendor/golang.org/x/net } |