Skip to content

Commit

Permalink
Fix homebrew formula
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Oct 16, 2017
1 parent d4c34ca commit d238553
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packaging/vobsub2srt.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class Vobsub2srt < Formula
depends_on 'ffmpeg'

def install
system "./configure #{std_cmake_args}"
system "make install"
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make", "install"
end
end
end

0 comments on commit d238553

Please sign in to comment.