blob: c4f2d5be4aed2517df6bbe33bc0fec9485204951 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
require 'formula'
class Movgrab < Formula
  homepage 'http://sites.google.com/site/columscode'
  url 'https://sites.google.com/site/columscode/files/movgrab-1.2.1.tar.gz'
  sha1 'f5f2f115dfdc2bb3d637f12d6b311910826e2123'
  def install
    system './configure', "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system 'make'
    # because case-insensitivity is sadly a thing and while the movgrab
    # Makefile itself doesn't declare INSTALL as a phony target, we
    # just remove the INSTALL instructions file so we can actually
    # just make install
    system 'rm INSTALL'
    system 'make install'
  end
end
  |