homebrew-core/Formula/libpano.rb
Adam Vandenberg 7bd947eb0b Update formulae for version 0.7
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
2010-08-07 18:08:53 -07:00

18 lines
541 B
Ruby

require 'formula'
class Libpano <Formula
url 'http://downloads.sourceforge.net/project/panotools/libpano13/libpano13-2.9.17_beta1/libpano13-2.9.17_beta1.tar.gz'
version '13-2.9.17_beta1'
homepage 'http://panotools.sourceforge.net/'
md5 'd3708c6c29f6a19b69c74232853e73ae'
depends_on 'jpeg'
depends_on 'libtiff'
depends_on 'libpng'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end