aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorblob81082013-11-12 11:02:57 +0000
committerAdam Vandenberg2013-11-13 07:55:29 -0800
commit821d753d883a68036305d10170df45b6430df1a8 (patch)
treeef0507effb76282c973b6f9668d9a81cd44189d4 /Library
parent83ded5598d81cdcb5b37caefff4d4f721fdae5f2 (diff)
downloadhomebrew-821d753d883a68036305d10170df45b6430df1a8.tar.bz2
SmartSim 1.2.1 - digital logic simulator.
Closes #24208. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/smartsim.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/Library/Formula/smartsim.rb b/Library/Formula/smartsim.rb
new file mode 100644
index 000000000..42f171556
--- /dev/null
+++ b/Library/Formula/smartsim.rb
@@ -0,0 +1,24 @@
+require 'formula'
+
+class Smartsim < Formula
+ homepage 'http://smartsim.org.uk'
+ url 'https://github.com/ashleynewson/SmartSim/archive/v1.2.1.tar.gz'
+ sha1 'ee3e5b4b4d7615ebbd9a1e944d0e506e697e7da0'
+ head 'https://github.com/ashleynewson/smartsim'
+
+ depends_on :x11
+ depends_on 'gtk+'
+ depends_on 'librsvg'
+ depends_on 'libxml2'
+ depends_on 'glib'
+ depends_on 'pkg-config' => :build
+ depends_on 'gettext'
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+end