blob: 66c6b57de5552ca98a55f91685fc6e5a4cb2ce8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Bibtexconv < Formula
homepage 'http://www.iem.uni-due.de/~dreibh/bibtexconv/'
url 'http://www.iem.uni-due.de/~dreibh/bibtexconv/download/bibtexconv-0.9.4.tar.gz'
sha1 'd743e9cfb5afd99cbb224c59c1a731db21ce2f4e'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
ENV.j1 # serialize folder creation
system "make", "install"
end
end
|