diff options
author | Isaac David <isacdaavid@isacdaavid.info> | 2016-08-13 12:48:47 -0500 |
---|---|---|
committer | Isaac David <isacdaavid@isacdaavid.info> | 2016-08-13 12:48:47 -0500 |
commit | ffbf808be9b43fe093eba1a531c03b65c5d59233 (patch) | |
tree | 968f7762aec4c5cbe079875e1e9fe134fb417fa9 /libre/icedove/PKGBUILD | |
parent | b6e57df1d96013bb067e45fa8688f24a7a2387b8 (diff) | |
download | abslibre-ffbf808be9b43fe093eba1a531c03b65c5d59233.tar.gz abslibre-ffbf808be9b43fe093eba1a531c03b65c5d59233.tar.bz2 abslibre-ffbf808be9b43fe093eba1a531c03b65c5d59233.zip |
libre/icedove: update armv7h support
Diffstat (limited to 'libre/icedove/PKGBUILD')
-rw-r--r-- | libre/icedove/PKGBUILD | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/libre/icedove/PKGBUILD b/libre/icedove/PKGBUILD index 8bf063997..e59367332 100644 --- a/libre/icedove/PKGBUILD +++ b/libre/icedove/PKGBUILD @@ -12,7 +12,7 @@ _pkgname=thunderbird pkgname=icedove epoch=1 pkgver=$_debver.$_debrel -pkgrel=2 +pkgrel=3 pkgdesc="A libre version of Debian Icedove, the standalone mail and news reader based on Mozilla Thunderbird." arch=(i686 x86_64 armv7h) @@ -33,7 +33,9 @@ source=("$_debrepo/`debfile $_debname`_$_debver.orig.tar.xz" changing-the-default-search-engine.patch firefox-gcc-6.0.patch mozilla-1228540.patch mozilla-1228540-1.patch vendor.js - fix-missing-files.patch) + fix-missing-files.patch + no-neon.patch + mozilla-1253216.patch) sha256sums=('923e7e7a2b9c2e3bdb4424ab0517b93123ee16a1ad9bd55c3ccaa0f0f7796ad0' 'e70bb2274c3a93549eca726c65ffd8b6c0a87a986214efd7c66dec3a4c5ac421' 'aaca37bcca176d1b8ebe7c18d3fb0c61e3d21769fbf8e994a189eb3263257d3d' @@ -43,7 +45,9 @@ sha256sums=('923e7e7a2b9c2e3bdb4424ab0517b93123ee16a1ad9bd55c3ccaa0f0f7796ad0' '3a3e84c702ee31450a3e84698441aceb11cf44e64c9fedcaddb8cb50db759417' 'd1ccbaf0973615c57f7893355e5cd3a89efb4e91071d0ec376e429b50cf6ed19' '058b58074368b57acf8a6df9a9ffac848b7d7b39f5abd84cb2039bcee42b73e2' - '294a2cc7b0477ad285af10ac2a04b767cabec07f03b23da23014bda71caea510') + '294a2cc7b0477ad285af10ac2a04b767cabec07f03b23da23014bda71caea510' + '59f40d8b2480aa67bf76f4f119826b6828a6a59cc040caf1ab5a6e19eef44c6e' + '1e7ef08acd46aeacc8cd8b2c89012983fb2c8c18648e0f3e9371b0c76caedbde') prepare() { cd "$srcdir/$_pkgname-$_debver" @@ -112,6 +116,21 @@ prepare() { # Load our searchplugins rm -rv mail/locales/en-US/searchplugins cp -av /usr/lib/mozilla/searchplugins mail/locales/en-US + + # ARM-specific changes: + if [[ "$CARCH" == arm* ]]; then + patch -Np0 -i ../no-neon.patch + patch -p2 -d mozilla < ../mozilla-1253216.patch + sed -i '/ac_add_options --enable-gold/d' .mozconfig + cat >> .mozconfig <<- EOF + ac_add_options --disable-elf-hack + ac_add_options --disable-neon + ac_add_options --disable-ion + ac_add_options --disable-webrtc + ac_add_options --disable-debug + ac_add_options --disable-debug-symbols + EOF + fi } build() { |