diff options
| author | Aria Stewart | 2013-03-16 19:14:28 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2013-05-29 15:47:15 -0700 |
| commit | 2e34581d9f4e3a26580dd697cde8215d65580165 (patch) | |
| tree | 10d830c08730ccdb6e63834aae03486014b78ad7 /Library | |
| parent | b1decae472df3f2270bc5aeb86881dc9b5210ce1 (diff) | |
| download | homebrew-2e34581d9f4e3a26580dd697cde8215d65580165.tar.bz2 | |
lrdf 0.5.0
Closes #18532.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lrdf.rb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Library/Formula/lrdf.rb b/Library/Formula/lrdf.rb new file mode 100644 index 000000000..3981b0d15 --- /dev/null +++ b/Library/Formula/lrdf.rb @@ -0,0 +1,40 @@ +require 'formula' + +class Lrdf < Formula + homepage 'https://github.com/swh/LRDF' + url 'https://github.com/swh/LRDF/archive/0.5.0.zip' + sha1 'c983c78f27ec2ddf1b699879ded840291aaba0c1' + + depends_on "pkg-config" => :build + depends_on "automake" => :build + depends_on "autoconf" => :build + depends_on "libtool" => :build + depends_on "raptor" + + # Fix for newer autotools + def patches; DATA; end + + 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 + +__END__ +diff -ur LRDF-0.5.0-o/configure.ac LRDF-0.5.0/configure.ac +--- LRDF-0.5.0-o/configure.ac 2013-03-16 16:52:58.000000000 -0400 ++++ LRDF-0.5.0/configure.ac 2013-03-16 16:53:18.000000000 -0400 +@@ -1,7 +1,7 @@ + # Process this file with autoconf to produce a configure script. + AC_INIT(src/lrdf.c) + AC_CONFIG_MACRO_DIR([m4]) +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADERS([config.h]) + AM_INIT_AUTOMAKE(liblrdf, 0.5.0) + + LRDF_LIBTOOL_VERSION=2:0:0 |
