aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Holm2014-11-29 20:06:59 +0100
committerMike McQuaid2014-11-30 17:07:25 +0000
commit20f0e22af23b82f5bd4adc33c039effb71a5a427 (patch)
tree6e9c650491c94e1385e53aa54cc7118c008b41fe /Library/Formula
parent0d6d0213dc4cc406cdfdcb5ba742b361a0ab2210 (diff)
downloadhomebrew-20f0e22af23b82f5bd4adc33c039effb71a5a427.tar.bz2
pcsc-lite 1.8.13
Closes #34556. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pcsc-lite.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/pcsc-lite.rb b/Library/Formula/pcsc-lite.rb
new file mode 100644
index 000000000..4033fb649
--- /dev/null
+++ b/Library/Formula/pcsc-lite.rb
@@ -0,0 +1,18 @@
+require "formula"
+
+class PcscLite < Formula
+ homepage "http://pcsclite.alioth.debian.org"
+ url "https://alioth.debian.org/frs/download.php/file/4126/pcsc-lite-1.8.13.tar.bz2"
+ sha1 "baa1ac3a477c336805cdf375912da5cbc8ebab8d"
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+
+ test do
+ system sbin/"pcscd", "--version"
+ end
+end