forked from necromant2005/homebrew-boneyard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
- Loading branch information
Showing
75 changed files
with
549 additions
and
643 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
require 'formula' | ||
|
||
class Aimage < Formula | ||
homepage 'http://www.forensicswiki.org/wiki/Aimage' | ||
url 'http://pkgs.fedoraproject.org/repo/pkgs/aimage/aimage-3.2.5.tar.gz/07a11d653cdd1d7a5aefe4d99cdbd408/aimage-3.2.5.tar.gz' | ||
sha1 '8f3136e9ad3204fb4c91149b3f01a32cc83e0371' | ||
homepage "http://www.forensicswiki.org/wiki/Aimage" | ||
url "http://pkgs.fedoraproject.org/repo/pkgs/aimage/aimage-3.2.5.tar.gz/07a11d653cdd1d7a5aefe4d99cdbd408/aimage-3.2.5.tar.gz" | ||
sha256 "9c362dbb24a064af014677c30d9511ed65b4f2b2c5ea3ba051bc4c5ada635b11" | ||
|
||
depends_on 'afflib' | ||
depends_on "afflib" | ||
|
||
def install | ||
system "./configure", "--disable-dependency-tracking", | ||
"--prefix=#{prefix}" | ||
system "make install" | ||
system "make", "install" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
require 'formula' | ||
|
||
class Blackbox < Formula | ||
homepage 'http://www.cs.rochester.edu/u/kautz/satplan/blackbox/' | ||
url 'http://www.cs.rochester.edu/u/kautz/satplan/blackbox/Blackbox44.tgz' | ||
sha1 '6e61cf9bbb1f28f2dd9f77f9be59fb6fd4fae224' | ||
homepage "http://www.cs.rochester.edu/u/kautz/satplan/blackbox/" | ||
url "http://www.cs.rochester.edu/u/kautz/satplan/blackbox/Blackbox44.tgz" | ||
sha256 "bf63cb7dffa8be6871bc2d059cd636f9ecb40cfacf510ec66880a6af43625ff1" | ||
|
||
def install | ||
system "make" | ||
bin.install 'blackbox' | ||
bin.install "blackbox" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
require 'formula' | ||
|
||
class Catdoc < Formula | ||
homepage 'http://wagner.pp.ru/~vitus/software/catdoc/' | ||
url 'http://ftp.wagner.pp.ru/pub/catdoc/catdoc-0.94.2.tar.gz' | ||
sha1 '50ce9d7cb24ad6b10a856c9c24183e2b0a11ca04' | ||
homepage "http://wagner.pp.ru/~vitus/software/catdoc/" | ||
url "http://ftp.wagner.pp.ru/pub/catdoc/catdoc-0.94.2.tar.gz" | ||
sha256 "03c98b103664e5d1b63de110854e93c2453bc10be5634f86c280303eb843d362" | ||
|
||
fails_with :clang do | ||
cause "The source uses undocumented behavior (decrementing null)." | ||
end | ||
|
||
def install | ||
# catdoc configure says it respects --mandir=, but does not. | ||
ENV['man1dir'] = man1 | ||
ENV["man1dir"] = man1 | ||
system "./configure", "--disable-debug", "--disable-dependency-tracking", | ||
"--prefix=#{prefix}" | ||
# The INSTALL file confuses make on case insensitive filesystems. | ||
system "mv INSTALL INSTALL.txt" | ||
system "make" | ||
# There is a race condition in the charsets/Makefile install target. The following line solves it. | ||
system "make -C charsets install-dirs" | ||
system "make install" | ||
system "make", "install" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
require 'formula' | ||
|
||
class Comparepdf < Formula | ||
homepage 'http://www.qtrac.eu/comparepdf.html' | ||
url 'http://www.qtrac.eu/comparepdf-1.0.1.tar.gz' | ||
sha1 '01774dac78dca9b712d55bfdbaf58c4b0bd31295' | ||
homepage "http://www.qtrac.eu/comparepdf.html" | ||
url "http://www.qtrac.eu/comparepdf-1.0.1.tar.gz" | ||
sha256 "cfb092fc40a8ed1317af36a574a470280eaeffcb9056095a65c974abd060c82c" | ||
|
||
depends_on 'qt' | ||
depends_on 'poppler' => 'with-qt4' | ||
depends_on "qt" | ||
depends_on "poppler" => "with-qt4" | ||
|
||
def install | ||
# Generate makefile and disable .app creation | ||
if MacOS.version >= :mavericks && ENV.compiler == :clang | ||
spec = 'unsupported/macx-clang-libc++' | ||
spec = "unsupported/macx-clang-libc++" | ||
else | ||
spec = 'macx-g++' | ||
spec = "macx-g++" | ||
end | ||
system 'qmake', '-spec', spec, 'CONFIG-=app_bundle' | ||
system 'make' | ||
system "qmake", "-spec", spec, "CONFIG-=app_bundle" | ||
system "make" | ||
|
||
bin.install 'comparepdf' | ||
man1.install 'comparepdf.1' | ||
bin.install "comparepdf" | ||
man1.install "comparepdf.1" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.