libdrawtext 0.1
Closes Homebrew/homebrew#21653. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
83f1134e48
commit
e0237dfa3f
1 changed files with 17 additions and 0 deletions
17
Formula/libdrawtext.rb
Normal file
17
Formula/libdrawtext.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class Libdrawtext < Formula
|
||||
homepage 'http://nuclear.mutantstargoat.com/sw/libdrawtext/'
|
||||
url 'http://nuclear.mutantstargoat.com/sw/libdrawtext/libdrawtext-0.1.tar.gz'
|
||||
sha1 '0d7166bbb1479553abf82b71a56ec565d861fe81'
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on :freetype
|
||||
depends_on 'glew'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-dbg", "--enable-opt",
|
||||
"--disable-dependency-tracking", "--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue