aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/alembic.rb
diff options
context:
space:
mode:
authorJack Nagel2013-09-24 17:30:53 -0500
committerJack Nagel2013-09-24 17:30:53 -0500
commite2b31e734e1221e19cf2fd66dc0098c18bfa9bf3 (patch)
treed77635ab2b5130e5337d1509549845667ad19d09 /Library/Formula/alembic.rb
parenta88da279fbc96f925620ac6d45ec7ab1d7d4a1fb (diff)
downloadhomebrew-e2b31e734e1221e19cf2fd66dc0098c18bfa9bf3.tar.bz2
Remove formulae moved to homebrew-science
Diffstat (limited to 'Library/Formula/alembic.rb')
-rw-r--r--Library/Formula/alembic.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/Library/Formula/alembic.rb b/Library/Formula/alembic.rb
deleted file mode 100644
index 5dc758774..000000000
--- a/Library/Formula/alembic.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-require 'formula'
-
-class Alembic < Formula
- homepage 'http://opensource.imageworks.com/?p=alembic'
- url 'http://alembic.googlecode.com/files/Alembic_1.1.5_2013041100.tgz'
- sha1 '539813017342d156ed5b0efafc983bda9b2cb001'
- version '1.1.5'
-
- depends_on 'cmake' => :build
- depends_on 'boost'
- depends_on 'hdf5'
- depends_on 'ilmbase'
-
- def install
- cmake_args = std_cmake_args + %w{. -DUSE_PYILMBASE=OFF -DUSE_PRMAN=OFF -DUSE_ARNOLD=OFF -DUSE_MAYA=OFF -DUSE_PYALEMBIC=OFF}
- system "cmake", *cmake_args
- system "make", "install"
- #move everything upwards
- lib.install_symlink Dir[prefix/"alembic-#{version}/lib/static/*"]
- include.install_symlink Dir[prefix/"alembic-#{version}/include/*"]
- bin.install_symlink Dir[prefix/"alembic-#{version}/bin/*"]
- end
-end