diff options
| author | Adam Vandenberg | 2014-03-04 20:01:54 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2014-03-04 20:01:54 -0800 | 
| commit | bd02a420730e8e6d66bc5aae09b82526a2e3d5af (patch) | |
| tree | d6501c803e3be9434232b8a90d93254dc5ac2281 /Library/Formula/minidjvu.rb | |
| parent | a3053c0fd7616c9bddef1c64549bdf6eaed1954b (diff) | |
| download | homebrew-bd02a420730e8e6d66bc5aae09b82526a2e3d5af.tar.bz2 | |
minidjvu: fix use of mkdir
Use autoreconf to fix mkdir invocation.
Closes #26901.
Diffstat (limited to 'Library/Formula/minidjvu.rb')
| -rw-r--r-- | Library/Formula/minidjvu.rb | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/minidjvu.rb b/Library/Formula/minidjvu.rb index d9b5953a6..98648ad37 100644 --- a/Library/Formula/minidjvu.rb +++ b/Library/Formula/minidjvu.rb @@ -5,12 +5,16 @@ class Minidjvu < Formula    url 'https://downloads.sourceforge.net/project/minidjvu/minidjvu/0.8/minidjvu-0.8.tar.gz'    sha1 '23835f73bc3580b72c6afe1f77feaf1e2611e714' +  depends_on :autoconf +  depends_on :automake +  depends_on :libtool    depends_on 'djvulibre'    depends_on 'libtiff'    def install      ENV.j1 - +    # force detection of BSD mkdir +    system "autoreconf", "-vfi"      system "./configure", "--prefix=#{prefix}"      system "make"      system "make install"  | 
