Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Formula/b/bluez.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
class Bluez < Formula
desc "Bluetooth protocol stack for Linux"
homepage "https://www.bluez.org"
url "https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.86.tar.xz"
sha256 "99f144540c6070591e4c53bcb977eb42664c62b7b36cb35a29cf72ded339621d"
license "GPL-2.0-or-later"
revision 1

livecheck do
url "https://mirrors.edge.kernel.org/pub/linux/bluetooth/"
Expand Down Expand Up @@ -32,6 +33,9 @@
depends_on "systemd" # for libudev

def install
# libical 4 split vCard helpers into libicalvcal; obexd needs it linked.
ENV.append "LIBS", "-licalvcal"

system "autoreconf", "--force", "--install", "--verbose" if build.head?
system "./configure", "--disable-testing", "--disable-manpages", "--enable-library", *std_configure_args
system "make"
Expand Down
11 changes: 6 additions & 5 deletions Formula/lib/libical.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
class Libical < Formula
desc "Implementation of iCalendar protocols and data formats"
homepage "https://libical.github.io/libical/"
url "https://github.com/libical/libical/releases/download/v3.0.20/libical-3.0.20.tar.gz"
sha256 "e73de92f5a6ce84c1b00306446b290a2b08cdf0a80988eca0a2c9d5c3510b4c2"
url "https://github.com/libical/libical/releases/download/v4.0.0/libical-4.0.0.tar.gz"
sha256 "caa74119c5a83d19e7466f20344ea6ffe4b779198ee33f46d5fab9d574dac207"
license any_of: ["LGPL-2.1-or-later", "MPL-2.0"]
revision 3
compatibility_version 1

livecheck do
url :stable
Expand All @@ -22,6 +22,7 @@
end

depends_on "cmake" => :build
depends_on "gobject-introspection" => :build
depends_on "pkgconf" => :build
depends_on "glib"
depends_on "icu4c@78"
Expand All @@ -35,9 +36,9 @@
def install
args = %W[
-DCMAKE_DISABLE_FIND_PACKAGE_BerkeleyDB=ON
-DENABLE_GTK_DOC=OFF
-DSHARED_ONLY=ON
-DCMAKE_INSTALL_RPATH=#{rpath}
-DLIBICAL_GLIB_BUILD_DOCS=OFF
-DLIBICAL_JAVA_BINDINGS=OFF
]

system "cmake", "-S", ".", "-B", "build", *args, *std_cmake_args
Expand Down
1 change: 1 addition & 0 deletions Formula/r/redwax-tool.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
class RedwaxTool < Formula
desc "Universal certificate conversion tool"
homepage "https://redwax.eu/rt/"
url "https://redwax.eu/dist/rt/redwax-tool-1.0.0.tar.bz2"
sha256 "dd2d7e6ce1ee9b78bc3a2d076f4c1b282b61e9a3a20456566d3e62d32dc12d5e"
license "Apache-2.0"
revision 1

livecheck do
url "https://redwax.eu/dist/rt/"
Expand Down
Loading