homebrew-core/Formula/abcm2ps.rb

31 lines
738 B
Ruby
Raw Normal View History

require "formula"
class Abcm2ps < Formula
homepage "http://moinejf.free.fr"
2014-08-25 01:07:12 +00:00
url "http://moinejf.free.fr/abcm2ps-7.8.7.tar.gz"
sha1 "2e2380016069461bc45950f472e6b1ea22a94c5b"
2014-07-31 02:04:17 +00:00
2014-06-29 03:47:43 +00:00
bottle do
2014-08-25 01:15:58 +00:00
sha1 "553e4b09045b5693a06faf5e202336ec5a87a9c2" => :mavericks
sha1 "829e8538a7766248b37c7e6ad83703eda97289fa" => :mountain_lion
sha1 "36219f8fa08cd14e376fc5e8b3a4f1627d8470da" => :lion
2014-06-29 03:47:43 +00:00
end
devel do
2014-08-25 01:07:12 +00:00
url "http://moinejf.free.fr/abcm2ps-8.1.5.tar.gz"
sha1 "a268290d12fec84429c91e86f4b734e3e155c40c"
end
depends_on "pkg-config" => :build
depends_on "pango" => :optional
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
2013-06-02 17:19:55 +00:00
system "#{bin}/abcm2ps"
end
end