play: use install_symlink

master
Adam Vandenberg 2012-02-12 16:52:43 -08:00
parent f1aafcc49a
commit 131ca49884
1 changed files with 2 additions and 3 deletions

View File

@ -1,15 +1,14 @@
require 'formula'
class Play < Formula
url 'http://download.playframework.org/releases/play-1.2.4.zip'
homepage 'http://www.playframework.org/'
url 'http://download.playframework.org/releases/play-1.2.4.zip'
md5 'ec8789f8cc02927ece536d102f5e649e'
def install
rm_rf 'python' # we don't need the bundled Python for windows
rm Dir['*.bat']
libexec.install Dir['*']
bin.mkpath
ln_s libexec+'play', bin
bin.install_symlink libexec+'play'
end
end