diff options
author | Isaac David <isacdaavid@isacdaavid.info> | 2016-08-11 13:26:19 -0500 |
---|---|---|
committer | Isaac David <isacdaavid@isacdaavid.info> | 2016-08-11 13:26:19 -0500 |
commit | 6fcb575fb0987e50db52c3b00f4aa7f76be84770 (patch) | |
tree | e49622af6e9f66bab86243e88a5a169194bf8996 /libre/iceape | |
parent | a28f7ea497e3c93db4f27eb7a1542289f006b450 (diff) | |
download | abslibre-6fcb575fb0987e50db52c3b00f4aa7f76be84770.tar.gz abslibre-6fcb575fb0987e50db52c3b00f4aa7f76be84770.tar.bz2 abslibre-6fcb575fb0987e50db52c3b00f4aa7f76be84770.zip |
libre/iceacpe: fix armv7h support
Diffstat (limited to 'libre/iceape')
-rw-r--r-- | libre/iceape/PKGBUILD | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libre/iceape/PKGBUILD b/libre/iceape/PKGBUILD index f1b0f150d..d1a6d5ee6 100644 --- a/libre/iceape/PKGBUILD +++ b/libre/iceape/PKGBUILD @@ -8,7 +8,7 @@ epoch=1 _brandingver=2.39 _brandingrel=3 pkgver=2.40 -pkgrel=2 +pkgrel=3 pkgdesc="A libre version of Debian Iceape, the internet suite based on SeaMonkey." arch=(i686 x86_64 armv7h) license=(MPL GPL LGPL) @@ -136,6 +136,15 @@ prepare() { # GCC 6 patch -Np1 -d mozilla -i ../../mozilla-1245076.patch patch -Np1 -d mozilla -i ../../mozilla-1245076-1.patch + + # ARM-specific changes + if [[ "$CARCH" == arm* ]]; then + cat >> .mozconfig <<- EOF + ac_add_options --disable-elf-hack + ac_add_options --disable-neon + ac_add_options --disable-ion + EOF + fi } build() { |