homebrew-core/Formula/sord.rb
2018-08-25 18:40:13 +02:00

24 lines
859 B
Ruby

class Sord < Formula
desc "C library for storing RDF data in memory"
homepage "https://drobilla.net/software/sord/"
url "https://download.drobilla.net/sord-0.16.2.tar.bz2"
sha256 "09f51174dd8f3efbd95f44f0bb0b165f08e066e052d40095de59de787987da8d"
bottle do
cellar :any
sha256 "d9fb150f83839e9179f5a011cba23885d6fd369912d876b066ab545eff993777" => :mojave
sha256 "c51813aa91714be7ff72372606538ccf028f3019a2e3b1c9eb1af184d925cd2c" => :high_sierra
sha256 "cdc2488f62b363e161df7412fc459fc4b6aa564d5b7d92c841e71d462629751a" => :sierra
sha256 "f83681f6abcdf47721ed6a8af9d6e2a17219808bd08f7951c4c145920e9fdf94" => :el_capitan
end
depends_on "pkg-config" => :build
depends_on "pcre"
depends_on "serd"
def install
system "./waf", "configure", "--prefix=#{prefix}"
system "./waf"
system "./waf", "install"
end
end