Skip to content

Commit

Permalink
library and Python bindings for oscats
Browse files Browse the repository at this point in the history
(Open Source Computerized Adaptive Testing System)
  • Loading branch information
turadg committed Feb 26, 2012
1 parent 1637d68 commit cdca179
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Library/Formula/oscats.rb
@@ -0,0 +1,21 @@
require 'formula'

class Oscats < Formula
homepage 'http://code.google.com/p/oscats/'
url 'http://oscats.googlecode.com/files/oscats-0.6.tar.gz'
md5 '7a4df0d8112691ea3a83e7f5dfcb1deb'

depends_on 'gsl'
depends_on 'glib'
depends_on 'pygobject'

def install
system "./configure", "--disable-dependency-tracking",
# "--enable-java-bindings", (errors in JNI headers)

This comment has been minimized.

Copy link
@adamv

adamv Feb 26, 2012

Let's not have commented-out code

This comment has been minimized.

Copy link
@turadg

turadg Feb 26, 2012

Author Owner

I thought it would be helpful to people who want to fork locally for other bindings. And leave a trail of issues encountered with those bindings.

Is there a better way to document that for further formula editors?

This comment has been minimized.

Copy link
@jacknagel

jacknagel Sep 8, 2012

Not really, but people editing the formula can easily run "./configure --help" in the source tree.

# "--enable-perl-bindings",
# "--enable-php-bindings",
"--enable-python-bindings",
"--prefix=#{prefix}"
system "make install"
end
end

0 comments on commit cdca179

Please sign in to comment.