diff options
| author | tokuhirom | 2013-05-30 17:48:20 +0900 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-05-30 09:36:13 -0700 | 
| commit | 308a5cadef643d01a44f929e12045833b7041d54 (patch) | |
| tree | 212951336dfa87a411e726c2ef4adcfb2acecbf7 | |
| parent | 0c1ae8f8c7b60bbdda84cd7b3ab451c6fabb1333 (diff) | |
| download | homebrew-308a5cadef643d01a44f929e12045833b7041d54.tar.bz2 | |
perl-build 1.02
Closes #20151.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/perl-build.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/Library/Formula/perl-build.rb b/Library/Formula/perl-build.rb new file mode 100644 index 000000000..c5d67d32e --- /dev/null +++ b/Library/Formula/perl-build.rb @@ -0,0 +1,13 @@ +require 'formula' + +class PerlBuild < Formula +  homepage 'https://github.com/tokuhirom/Perl-Build' +  url 'https://github.com/tokuhirom/Perl-Build/archive/1.02.tar.gz' +  sha1 '30043e08e1bebbf9b41341bae816e7957d6167f3' + +  head 'https://github.com/tokuhirom/perl-build.git' + +  def install +    bin.install "perl-build", "bin/perl-install", "bin/perl-uninstall" +  end +end | 
