From 5dd7bea084e86ba2d112fb4ae23eee417ad31207 Mon Sep 17 00:00:00 2001 From: Fred Oliveira Date: Mon, 2 Dec 2013 08:46:28 +0000 Subject: movgrab 1.2.1 Closes #24852. Closes #24871. Signed-off-by: Adam Vandenberg --- Library/Formula/movgrab.rb | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'Library') diff --git a/Library/Formula/movgrab.rb b/Library/Formula/movgrab.rb index d903190a5..c4f2d5be4 100644 --- a/Library/Formula/movgrab.rb +++ b/Library/Formula/movgrab.rb @@ -2,22 +2,18 @@ require 'formula' class Movgrab < Formula homepage 'http://sites.google.com/site/columscode' - url 'http://sites.google.com/site/columscode/files/movgrab-1.1.13.tar.gz' - sha1 '532e5e529dd4263b54f56965fafab04686f9f873' + url 'https://sites.google.com/site/columscode/files/movgrab-1.2.1.tar.gz' + sha1 'f5f2f115dfdc2bb3d637f12d6b311910826e2123' def install - # When configure recurses into libUseful-2.0, it puts CC and CFLAGS into - # the second configure command line causing an error, invalid host type. - # The workaround is to manually configure libUseful-2.0 without those. - # The cache-file and srcdir arguments parse ok. So those were left in. - # Reported upstream. As of 1.1.12 the dev hasn't solved this yet. - system './configure', "--prefix=#{prefix}", '--no-recursion' - cd 'libUseful-2.0' do - system './configure', "--prefix=#{prefix}", - '--cache-file=/dev/null', - '--srcdir=.' - end + 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 -- cgit v1.2.3