diff options
author | khronosschoty <khronosschoty@posteo.org> | 2017-04-19 07:59:19 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-19 07:59:34 +0700 |
commit | 4e64cba740c546b9fb8da1cf95367116e0cf48c4 (patch) | |
tree | c00debc077208b102932621e25acfd7593045102 /network/PaleMoon/PaleMoon.SlackBuild | |
parent | a8fe44e04c668db612eb00523dc0ab33237b0983 (diff) |
network/PaleMoon: Updated for version 27.2.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/PaleMoon/PaleMoon.SlackBuild')
-rw-r--r-- | network/PaleMoon/PaleMoon.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/PaleMoon/PaleMoon.SlackBuild b/network/PaleMoon/PaleMoon.SlackBuild index 8772368cfbc89..a60adc428839f 100644 --- a/network/PaleMoon/PaleMoon.SlackBuild +++ b/network/PaleMoon/PaleMoon.SlackBuild @@ -25,7 +25,7 @@ # Modified by SlackBuilds.org PRGNAM=PaleMoon -VERSION=${VERSION:-27.2.0} +VERSION=${VERSION:-27.2.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -150,6 +150,14 @@ else DEVTOOLS="--enable-devtools" fi +# "gst-libav" has been replaced with ffmpeg in PaleMoon, and is slated for complete +# removal; pass the parameter ENABLE_GST_LIBAV=yes, however, to keep using it (for now). +if [ "$ENABLE_GST_LIBAV" = "yes" ]; then + GST_LIBAV="--enable-gstreamer --disable-ffmpeg" +else + GST_LIBAV="" +fi + # Please see https://www.palemoon.org/redist.shtml for restrictions when using the official branding. # Our building options, in a configure-like display ;) OPTIONS="\ @@ -162,6 +170,7 @@ OPTIONS="\ --disable-mochitests \ --enable-jemalloc \ --with-pthreads \ + $GST_LIBAV \ $DEVTOOLS \ $DEBUG \ --x-libraries=/usr/lib${LIBDIRSUFFIX} \ |