diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-06-09 19:39:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-06-11 17:34:31 +0000 |
commit | 557c09644508064269207d77489446d268be81c9 (patch) | |
tree | fa508d67538d36b35638989556be88b7353dd883 /community | |
parent | 39e12b0c15823380b6b16513f4cdf89877b71387 (diff) | |
download | aports-557c09644508064269207d77489446d268be81c9.tar.bz2 aports-557c09644508064269207d77489446d268be81c9.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.
Diffstat (limited to 'community')
-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 } |