blob: 588c1fe7854d6e70b97008b811096dcd518f1b57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
require 'formula'
class Dmenu < Formula
  homepage 'http://tools.suckless.org/dmenu/'
  url 'http://dl.suckless.org/tools/dmenu-4.5.tar.gz'
  sha1 '70c1a13b950b7b0cb1bc35e30c6e861a78359953'
  head 'http://hg.suckless.org/dmenu/'
  depends_on :x11
  def install
    system "make", "PREFIX=#{prefix}", "install"
  end
  def test
    system "#{bin}/dmenu", "-v"
  end
end
  |