Skip to content

Commit

Permalink
abcm2ps 7.8.2, 8.0.3
Browse files Browse the repository at this point in the history
Added optional pango support.
  • Loading branch information
adamv committed May 18, 2014
1 parent 4fc6db6 commit 1fbf44f
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions Formula/abcm2ps.rb
@@ -1,13 +1,26 @@
require 'formula'
require "formula"

class Abcm2ps < Formula
homepage 'http://moinejf.free.fr'
url 'http://moinejf.free.fr/abcm2ps-6.6.22.tar.gz'
sha1 'a59dad019320e5931f54cf3788bc19d4e095f836'
homepage "http://moinejf.free.fr"

stable do
url "http://moinejf.free.fr/abcm2ps-7.8.2.tar.gz"
sha1 "88b18e5077e03c141ef3269941e09d5fd09ee630"
end

devel do
url "http://moinejf.free.fr/abcm2ps-8.0.3.tar.gz"
sha1 "eee71d87acdc62ba0e1c74b75adb6ae092b776be"
end

depends_on "pango" => :optional
if build.with? "pango"
depends_on "pkg-config" => :build
end

def install
system "./configure", "--prefix=#{prefix}"
system "make install"
system "make", "install"
end

test do
Expand Down

0 comments on commit 1fbf44f

Please sign in to comment.