Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Add option for static library creation to glib formula. #25505

Closed
wants to merge 1 commit into from
Closed
Changes from all 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
3 changes: 3 additions & 0 deletions Library/Formula/glib.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class Glib < Formula

option :universal
option 'test', 'Build a debug build and run tests. NOTE: Not all tests succeed yet'
option 'with-static', 'Build glib with a static archive.'

depends_on 'pkg-config' => :build
depends_on 'gettext'
Expand Down Expand Up @@ -53,6 +54,8 @@ def install
--with-gio-module-dir=#{HOMEBREW_PREFIX}/lib/gio/modules
]

args << '--enable-static' if build.with? 'static'

system "./configure", *args

if build.universal?
Expand Down