diff options
| -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 |
