homebrew-core/Formula/libvidstab.rb

23 lines
601 B
Ruby
Raw Normal View History

2014-04-02 21:31:40 +00:00
require "formula"
class Libvidstab < Formula
homepage "http://public.hronopik.de/vid.stab/"
url "https://github.com/georgmartius/vid.stab/archive/release-0.98b.tar.gz"
sha1 "1030a1baa9b2cba844758a6cd8dd5d5fc23f9cd9"
2014-07-03 21:27:44 +00:00
bottle do
cellar :any
2014-10-20 13:32:55 +00:00
revision 1
sha1 "57958e5826781bbf10929f918c36a2ac54dc52bd" => :yosemite
sha1 "be60ee3921484efe3f90495b24046437c84498b5" => :mavericks
sha1 "05e50798e9cf4120ae96dba00f1fed578f481cf0" => :mountain_lion
2014-07-03 21:27:44 +00:00
end
2014-04-02 21:31:40 +00:00
depends_on "cmake" => :build
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
end