aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/texwrapper.rb
blob: 4e3a1cd60a0a01c736becfd8bedb969c4cde15ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Texwrapper < Formula
  homepage 'http://obrecht.fr/texwrapper/'
  url 'http://obrecht.fr/texwrapper/texwrapper.0.2.2.tar.gz'
  sha1 '692c157f6f8b6ea1fc8bc4720d287ab147690fcc'

  def install
    system "make"
    bin.install 'texwrapper'
    man1.install 'texwrapper.1'
  end
end