Skip to content

Commit

Permalink
xclip: import from homebrew/x11.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Jan 27, 2017
1 parent 5e9deac commit fa1f2c2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Formula/xclip.rb
@@ -0,0 +1,17 @@
class Xclip < Formula
desc "Command-line utility that is designed to run on any system with an X11"
homepage "https://github.com/astrand/xclip"
url "https://downloads.sourceforge.net/project/xclip/xclip/0.12/xclip-0.12.tar.gz"
sha256 "b7c7fad059ba446df5692d175c2a1d3816e542549661224806db369a0d716c45"

depends_on :x11

def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end

test do
system "#{bin}/xclip", "-version"
end
end

0 comments on commit fa1f2c2

Please sign in to comment.