blob: 16619c2af775e3b0c2474d8fe7fc81ec5a6c6cb6 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require "formula"
class PerlBuild < Formula
  homepage "https://github.com/tokuhirom/Perl-Build"
  url "https://github.com/tokuhirom/Perl-Build/archive/1.10.tar.gz"
  sha1 "e24e4a12d41a98c3eaa7558a47cc899bd6b1051a"
  head "https://github.com/tokuhirom/perl-build.git"
  def install
    bin.install "perl-build", "bin/plenv-install", "bin/plenv-uninstall"
  end
end
 |