de75e90735
Previous version was no longer hosted on upstream website. Additionally, this version of libmp3splt requires autoconf 2.62, but only 2.61 is available -- however autoconf is not needed to compile. Finally, the patch that was once used in the previous version of this formula was deleted off of gist.github.com. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
20 lines
554 B
Ruby
20 lines
554 B
Ruby
require 'formula'
|
|
|
|
class Libmp3splt < Formula
|
|
url 'http://downloads.sourceforge.net/project/mp3splt/libmp3splt/0.7.1/libmp3splt-0.7.1.tar.gz'
|
|
homepage 'http://mp3splt.sourceforge.net'
|
|
md5 '62025951f483334f14f1b9be58162094'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'gettext'
|
|
depends_on 'pcre'
|
|
depends_on 'libid3tag'
|
|
depends_on 'mad'
|
|
depends_on 'libvorbis'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|