4cd0935be7
Closes Homebrew/homebrew#26942. Closes Homebrew/homebrew#26946. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
18 lines
372 B
Ruby
18 lines
372 B
Ruby
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
|
|
|
|
test do
|
|
system "#{bin}/dmenu", "-v"
|
|
end
|
|
end
|