blob: c24f68cafa65b2eb704575889e3c05d16e28f6b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Tnef < Formula
homepage 'http://sourceforge.net/projects/tnef/'
url 'http://downloads.sourceforge.net/project/tnef/tnef/tnef-1.4.8.tar.gz'
sha1 '19431176ee523fe3fd5e745882a9083426cc5671'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|