aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorFred Oliveira2013-12-02 08:46:28 +0000
committerAdam Vandenberg2013-12-02 18:31:37 -0800
commit5dd7bea084e86ba2d112fb4ae23eee417ad31207 (patch)
treedb9430ce5c394ae1d833700adb83eb6871560944 /Library
parente3077d1aedb563ca9906d1e4c2531d0e9d4cb605 (diff)
downloadhomebrew-5dd7bea084e86ba2d112fb4ae23eee417ad31207.tar.bz2
movgrab 1.2.1
Closes #24852. Closes #24871. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/movgrab.rb22
1 files changed, 9 insertions, 13 deletions
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