aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-06 21:38:26 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-06 21:38:30 +0100
commitf3827e41d9ed12f454c9cd930322047c1ce6402b (patch)
tree5f0c63d360a1e932756f050baed942c4a36ee39f
parentre-add gitlab-release stage (diff)
downloadlibrewolf-linux-f3827e41d9ed12f454c9cd930322047c1ce6402b.tar.gz
librewolf-linux-f3827e41d9ed12f454c9cd930322047c1ce6402b.tar.bz2
librewolf-linux-f3827e41d9ed12f454c9cd930322047c1ce6402b.zip
temporarily disable custom config/patches during build
Some changes should be discussed before being integrated in the main LibreWolf releases, so they're disabled for the time being.
-rw-r--r--PKGBUILD10
1 files changed, 5 insertions, 5 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 30eb67f..1ceeb28 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,7 +22,7 @@ optdepends=('networkmanager: Location detection via available WiFi networks'
'speech-dispatcher: Text-to-Speech'
'hunspell-en_US: Spell checking, American English')
options=(!emptydirs !makeflags !strip)
-install='librewolf.install'
+# install='librewolf.install'
source=(https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz
$pkgname.desktop
$pkgname.cfg.patch
@@ -59,10 +59,10 @@ prepare() {
# uncomment it if you are OK with a slight potential decrease in privacy,
# or even better: check what I'm doing there.
- cd ${srcdir}/settings
- patch -Np1 -i ${srcdir}/${pkgname}.cfg.patch
- rm -f librewolf.cfg.orig
- cd ${srcdir}/firefox-$pkgver
+ # cd ${srcdir}/settings
+ # patch -Np1 -i ${srcdir}/${pkgname}.cfg.patch
+ # rm -f librewolf.cfg.orig
+ # cd ${srcdir}/firefox-$pkgver
cat >../mozconfig <<END
ac_add_options --enable-application=browser
bgstack15