blob: 60c4c47dbc9d6ae427ddac7e2cd275e9c9aa40e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class Dmenu < Formula
homepage 'http://tools.suckless.org/dmenu/'
url 'http://dl.suckless.org/tools/dmenu-4.5.tar.gz'
sha1 '70c1a13b950b7b0cb1bc35e30c6e861a78359953'
bottle do
cellar :any
sha1 "54caf91cc564300d67e0ced4dc8ae65584b1276a" => :mavericks
sha1 "2630df757da0902c41254ecf4eedaa14fb5138ba" => :mountain_lion
sha1 "364bca930070125a3cfcbf8769ef53bb20d84a92" => :lion
end
head 'http://git.suckless.org/dmenu/', :using => :git
depends_on :x11
def install
system "make", "PREFIX=#{prefix}", "install"
end
test do
system "#{bin}/dmenu", "-v"
end
end
|