27 lines
783 B
Ruby
27 lines
783 B
Ruby
class Xsane < Formula
|
|
desc "Graphical scanning frontend"
|
|
homepage "http://www.xsane.org"
|
|
url "http://www.xsane.org/download/xsane-0.999.tar.gz"
|
|
sha256 "5782d23e67dc961c81eef13a87b17eb0144cae3d1ffc5cf7e0322da751482b4b"
|
|
revision 1
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gtk+"
|
|
depends_on "sane-backends"
|
|
|
|
# Needed to compile against libpng 1.5
|
|
# Project appears to be dead
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/113352/trunk/dports/graphics/xsane/files/patch-src__xsane-save.c-libpng15-compat.diff"
|
|
sha256 "404b963b30081bfc64020179be7b1a85668f6f16e608c741369e39114af46e27"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/xsane", "--version"
|
|
end
|
|
end
|