aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bibtexconv.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/bibtexconv.rb b/Library/Formula/bibtexconv.rb
new file mode 100644
index 000000000..66c6b57de
--- /dev/null
+++ b/Library/Formula/bibtexconv.rb
@@ -0,0 +1,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