aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/st.rb
blob: 8cfccf2cca1c91e096ed3588a2c7b1b0293681d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class St < Formula
  homepage 'https://github.com/nferraz/st'
  url 'https://github.com/nferraz/st/archive/v1.1.1.tar.gz'
  sha1 'ad7fd987b8c986a9ff80a1f65faad7ce6fbb56fa'

  def install
    system "perl", "Makefile.PL", "PREFIX=#{prefix}"
    system "make", "install"
  end
end