blob: 92fb564369eaa0d292300fb8c5eb7b1811fe9dba (
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
test do
system "#{bin}/dmenu", "-v"
end
end
|