Skip to content

Instantly share code, notes, and snippets.

@afiore
Created June 26, 2013 08:58
Show Gist options
  • Save afiore/5865882 to your computer and use it in GitHub Desktop.
Save afiore/5865882 to your computer and use it in GitHub Desktop.
Opendetex Hombrew formula
require 'formula'
class Opendetex < Formula
homepage 'https://code.google.com/p/opendetex/'
url 'https://opendetex.googlecode.com/files/opendetex-2.8.1.tar.bz2'
sha1 'a811635519dc6573735ca9d406f7032eccacd7e0'
version "2.8.1"
depends_on 'flex' => :build
def install
system "make DESTDIR=#{prefix}"
bin.install "detex"
end
def test
system "detex -h"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment