homebrew-core/Formula/lrdf.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

22 lines
708 B
Ruby

class Lrdf < Formula
desc "RDF library for accessing plugin metadata in the LADSPA plugin system"
homepage "https://github.com/swh/LRDF"
url "https://github.com/swh/LRDF/archive/0.5.0.tar.gz"
sha256 "ba803af936fd53a8b31651043732e6d6cec3d24fa24d2cb8c1506c2d1675e2a2"
depends_on "pkg-config" => :build
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
depends_on "raptor"
def install
system "glibtoolize"
system "aclocal", "-I", "m4"
system "autoconf"
system "automake", "-a", "-c"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end