cbd5c6ea18
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
33 lines
1,014 B
Ruby
33 lines
1,014 B
Ruby
require 'formula'
|
|
|
|
class LibquviScripts < Formula
|
|
homepage 'http://quvi.sourceforge.net/'
|
|
url 'http://sourceforge.net/projects/quvi/files/0.4/libquvi-scripts/libquvi-scripts-0.4.14.tar.xz'
|
|
sha1 'fe721c8d882c5c4a826f1339c79179c56bb0fe41'
|
|
end
|
|
|
|
class Libquvi < Formula
|
|
homepage 'http://quvi.sourceforge.net/'
|
|
url 'http://downloads.sourceforge.net/project/quvi/0.4/libquvi/libquvi-0.4.1.tar.bz2'
|
|
sha1 'b7ac371185c35a1a9a2135ef4ee61c86c48f78f4'
|
|
|
|
depends_on 'xz' => :build
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'lua'
|
|
|
|
def install
|
|
scripts = prefix/'libquvi-scripts'
|
|
LibquviScripts.new.brew do
|
|
system "./configure", "--prefix=#{scripts}", "--with-nsfw"
|
|
system "make install"
|
|
end
|
|
ENV.append 'PKG_CONFIG_PATH', "#{scripts}/lib/pkgconfig", ':'
|
|
|
|
# Lua 5.2 does not have a proper lua.pc
|
|
ENV['liblua_CFLAGS'] = ' '
|
|
ENV['liblua_LIBS'] = '-llua'
|
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|