diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libvidstab.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/libvidstab.rb b/Library/Formula/libvidstab.rb new file mode 100644 index 000000000..e8784dca3 --- /dev/null +++ b/Library/Formula/libvidstab.rb @@ -0,0 +1,14 @@ +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" + + depends_on "cmake" => :build + + def install + system "cmake", ".", *std_cmake_args + system "make", "install" + end +end |
