Skip to content

Instantly share code, notes, and snippets.

@clarete
Created January 30, 2013 02:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clarete/4669995 to your computer and use it in GitHub Desktop.
Save clarete/4669995 to your computer and use it in GitHub Desktop.
Brew formula for taningia (http://github.com/clarete/taningia)
require 'formula'
class Taningia < Formula
homepage 'https://github.com/clarete/taningia'
url 'https://github.com/clarete/taningia.git'
version '0.2.3'
depends_on 'pkg-config' => :build
depends_on 'autoconf' => :build
depends_on 'automake' => :build
depends_on 'libtool' => :build
depends_on 'check' => :build
depends_on 'iksemel'
def install
system "./autogen.sh --prefix=#{prefix}"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment