blob: e8784dca377611c5b41c3297de8356dec8cd1dc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|