File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ if [ -n "$IS_OSX" ]; then
77
77
if (!$bottle_block && /^\s*bottle do$/) { $bottle_block=1; next; }
78
78
if ($bottle_block) { if (/^\s*end\s*$/) { $bottle_block=0} elsif (/^\s*sha256\s/) {$_=""} next; }
79
79
if (/^\s*depends_on "(x264|x265|xvid|frei0r|rubberband|libvidstab)"$/) {$_=""; next;}
80
- if (/^\s*--enable-(gpl|libx264|libx265|libxvid|frei0r|librubberband|libvidstab)$/) {$_=""; next;}
80
+ if (/^\s*--enable-(gpl|libx264|libx265|libxvid|frei0r|librubberband|libvidstab|libass )$/) {$_=""; next;}
81
81
' < " $FF_FORMULA " > " $LFF_FORMULA "
82
82
diff -u " $FF_FORMULA " " $LFF_FORMULA " || test $? -le 1
83
83
@@ -106,6 +106,11 @@ function pre_build {
106
106
if [ -n " $CACHE_STAGE " ]; then
107
107
ELAPSED_TIME=$(( $(date +% s) - $TRAVIS_TIMER_START_TIME / 10 ** 9 ))
108
108
echo " Elapsed time: " $(( $ELAPSED_TIME / 60 )) " m (${ELAPSED_TIME} s)"
109
+ # Drop redundant dependants to reduce package update overhead
110
+ local pkg
111
+ pkg=postgis; brew list $pkg > /dev/null && brew rm $pkg
112
+ pkg=libass; brew list $pkg > /dev/null && brew rm $pkg
113
+
109
114
brew update
110
115
generate_ffmpeg_formula
111
116
brew_add_local_bottles
You can’t perform that action at this time.
0 commit comments