usbredir: add test
This commit is contained in:
parent
e5229d7a06
commit
16fbc92218
15
usbredir.rb
15
usbredir.rb
|
@ -3,6 +3,7 @@ class Usbredir < Formula
|
||||||
homepage "https://www.spice-space.org"
|
homepage "https://www.spice-space.org"
|
||||||
url "https://www.spice-space.org/download/usbredir/usbredir-0.8.0.tar.bz2"
|
url "https://www.spice-space.org/download/usbredir/usbredir-0.8.0.tar.bz2"
|
||||||
sha256 "87bc9c5a81c982517a1bec70dc8d22e15ae197847643d58f20c0ced3c38c5e00"
|
sha256 "87bc9c5a81c982517a1bec70dc8d22e15ae197847643d58f20c0ced3c38c5e00"
|
||||||
|
revision 1
|
||||||
|
|
||||||
depends_on "libtool" => :build
|
depends_on "libtool" => :build
|
||||||
depends_on "pkg-config" => :build
|
depends_on "pkg-config" => :build
|
||||||
|
@ -20,4 +21,18 @@ class Usbredir < Formula
|
||||||
"--prefix=#{prefix}"
|
"--prefix=#{prefix}"
|
||||||
system "make", "install"
|
system "make", "install"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test do
|
||||||
|
(testpath/"test.cpp").write <<~EOS
|
||||||
|
#include <usbredirparser.h>
|
||||||
|
int main() {
|
||||||
|
return usbredirparser_create() ? 0 : 1;
|
||||||
|
}
|
||||||
|
EOS
|
||||||
|
system ENV.cc, "test.cpp",
|
||||||
|
"-L#{lib}",
|
||||||
|
"-lusbredirparser",
|
||||||
|
"-o", "test"
|
||||||
|
system "./test"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue