blob: bb97e20bee4e5373693a7cfaa0900e5bdf14fbdf (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | require 'formula'
class Vramsteg < Formula
  homepage 'http://tasktools.org/projects/vramsteg.html'
  url 'http://taskwarrior.org/download/vramsteg-1.0.1.tar.gz'
  sha1 'bbc9f54e6e10b3e82dbbac6275e2e611d752e85d'
  depends_on 'cmake' => :build
  def install
    system "cmake", ".", *std_cmake_args
    system "make", "install"
  end
end
 |