diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2019-05-19 22:17:04 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2019-05-19 22:17:24 +1000 |
commit | a4b1a6dfc9002cd192e5769bcb3a75578b30cefa (patch) | |
tree | 8a05e9f89dc590cd0c20afb779e865b5632658e5 /thunderbird/Pkgfile | |
parent | bbb898ce6a8e1e7f7b2fe6cf2fad8e7c75ec6a0e (diff) | |
download | contrib-a4b1a6dfc9002cd192e5769bcb3a75578b30cefa.tar.gz contrib-a4b1a6dfc9002cd192e5769bcb3a75578b30cefa.tar.xz |
thunderbird: 60.6.1 -> 60.7.0
Diffstat (limited to 'thunderbird/Pkgfile')
-rw-r--r-- | thunderbird/Pkgfile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/thunderbird/Pkgfile b/thunderbird/Pkgfile index bc1e49d8f..f1069e393 100644 --- a/thunderbird/Pkgfile +++ b/thunderbird/Pkgfile @@ -5,7 +5,7 @@ # Optional: sccache name=thunderbird -version=60.6.1 +version=60.7.0 release=1 source=(http://ftp.mozilla.org/pub/thunderbird/releases/$version/source/$name-$version.source.tar.xz $name.desktop) @@ -13,9 +13,9 @@ source=(http://ftp.mozilla.org/pub/thunderbird/releases/$version/source/$name-$v build() { cd $name-$version - if [ -n "$(pkginfo -i | grep '^sccache ')" ]; then - export RUSTC_WRAPPER=/usr/bin/sccache - fi + prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache + mkdir "$PKGMK_SOURCE_DIR/rust" || true + export CARGO_HOME="$PKGMK_SOURCE_DIR/rust" cat <<- EOF > .mozconfig ac_add_options --enable-application=comm/mail @@ -48,7 +48,6 @@ EOF export MOZ_MAKE_FLAGS="-j ${JOBS-1}" export MOZBUILD_STATE_PATH="$PKGMK_SOURCE_DIR/.mozbuild" - export CARGO_HOME="$PKGMK_SOURCE_DIR" ./mach build DESTDIR=$PKG ./mach install |