aboutsummaryrefslogtreecommitdiffstats
path: root/community/libphonenumber
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2020-02-22 12:35:46 +0100
committerSören Tempel <soeren+git@soeren-tempel.net>2020-02-22 12:35:46 +0100
commite160fc1080e0cd164ace3f989739131c0216563d (patch)
tree5c6f482cf989eca427096b80558124208fe2b373 /community/libphonenumber
parentc72bd0f93761f84ae6e5bcf0ec9d55c43abe6f54 (diff)
downloadaports-e160fc1080e0cd164ace3f989739131c0216563d.tar.bz2
aports-e160fc1080e0cd164ace3f989739131c0216563d.tar.xz
community/libphonenumber: disable CMake None build type (hotfix)
Already tried getting this to work with the None build type but failed. To unblock the builders lets just temporarily switch to a different build type for now. This is not intended to be a long term solution.
Diffstat (limited to 'community/libphonenumber')
-rw-r--r--community/libphonenumber/APKBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/community/libphonenumber/APKBUILD b/community/libphonenumber/APKBUILD
index bc92aabaa9..170abd937d 100644
--- a/community/libphonenumber/APKBUILD
+++ b/community/libphonenumber/APKBUILD
@@ -15,8 +15,9 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/googlei18n/libphonenumber/ar
build() {
cd "$builddir/cpp"
+ # TODO: Switch to the CMake None build type.
cmake \
- -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_BUILD_TYPE=MinSizeRel \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
make