homebrew-core/Formula/libxmp.rb

26 lines
673 B
Ruby
Raw Normal View History

2014-07-19 17:13:27 +00:00
require "formula"
2013-02-16 07:45:34 +00:00
class Libxmp < Formula
2014-07-19 17:13:27 +00:00
homepage "http://xmp.sourceforge.net"
url "https://downloads.sourceforge.net/project/xmp/libxmp/4.2.8/libxmp-4.2.8.tar.gz"
sha1 "7cb28f316c8991493e626dab149719a376c3501d"
2013-02-16 07:45:34 +00:00
2014-07-03 21:27:44 +00:00
bottle do
cellar :any
sha1 "bf5b171d0f271890d066dee22e07a9d1a8319286" => :mavericks
sha1 "11616c4b632afb7fb5de9388cb2707f50dc154b3" => :mountain_lion
sha1 "275c0e98a00fce621e1801ad70628bf0a13e0dac" => :lion
2014-07-03 21:27:44 +00:00
end
2013-09-22 01:47:24 +00:00
head do
2014-07-19 17:13:27 +00:00
url "git://git.code.sf.net/p/xmp/libxmp"
2013-09-22 01:47:24 +00:00
depends_on :autoconf
end
2013-02-16 07:45:34 +00:00
def install
system "autoconf" if build.head?
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end