xclip 0.12
Closes Homebrew/homebrew#11597. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
1324db4646
commit
2f9044645d
1 changed files with 17 additions and 0 deletions
17
Formula/xclip.rb
Normal file
17
Formula/xclip.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class Xclip < Formula
|
||||
homepage 'http://xclip.sourceforge.net/'
|
||||
url 'http://downloads.sourceforge.net/project/xclip/xclip/0.12/xclip-0.12.tar.gz'
|
||||
md5 'f7e19d3e976fecdc1ea36cd39e39900d'
|
||||
|
||||
def install
|
||||
ENV.x11
|
||||
system "./configure", "--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
|
||||
def test
|
||||
system "#{bin}/xclip -version"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue