diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-06-21 12:02:20 +0000 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-21 15:23:09 +0200 |
commit | c2a9ea7ac0473ecfd45feffd5390076dd543ea0f (patch) | |
tree | 916d6e5f7710ee3127d12237567bcb185464bb93 /testing | |
parent | f11efa20ebd418fb031b89deaebe2165ab045995 (diff) | |
download | aports-c2a9ea7ac0473ecfd45feffd5390076dd543ea0f.tar.bz2 aports-c2a9ea7ac0473ecfd45feffd5390076dd543ea0f.tar.xz |
testing/wmi-client: enable build on ppc64le
update config guess and enable build on ppc64le.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/wmi-client/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/testing/wmi-client/APKBUILD b/testing/wmi-client/APKBUILD index 808f22a68d..3139bb1bb4 100644 --- a/testing/wmi-client/APKBUILD +++ b/testing/wmi-client/APKBUILD @@ -6,7 +6,7 @@ pkgver=1.3.16 pkgrel=1 pkgdesc="DCOM/WMI client implementation" url="https://www.orvant.com/packages" -arch="all !aarch64 !ppc64le" +arch="all !aarch64" license="GPL3" subpackages="libwmiclient-dev:libdev libwmiclient:lib" makedepends="autoconf python-dev perl-datetime" @@ -21,6 +21,11 @@ source="https://launchpad.net/~cybersec/+archive/ubuntu/chaos-ppa-v2/+files/${_p builddir="$srcdir/$_pkgname-$pkgver" +prepare() { + default_prepare + update_config_guess +} + build() { cd "$builddir" make build "CPP=gcc -E -ffreestanding" |