Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[adwaita_icon_theme] fix windows installation issues for v3. #8003

Merged
merged 2 commits into from
Jan 27, 2024
Merged
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
8 changes: 5 additions & 3 deletions A/adwaita_icon_theme/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
using BinaryBuilder

name = "adwaita_icon_theme"
version = v"43.0.1"
version = v"3.33.93" # new patch version to build for all platforms
tag = v"3.33.92"

# Collection of sources required to build adwaita-icon-theme
sources = [
ArchiveSource("https://download.gnome.org/sources/adwaita-icon-theme/$(version.major)/adwaita-icon-theme-$(version.major).tar.xz",
"2e3ac77d32a6aa5554155df37e8f0a0dd54fc5a65fd721e88d505f970da32ec6"),
ArchiveSource("https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/archive/$(tag)/adwaita-icon-theme-$(tag).tar.bz2",
"9e2078bf9e4d28f2a921fa88159733fe83a1fd37f8cbd768a5de3b83f44f0973"),
]

# Bash recipe for building across all platforms
Expand All @@ -17,6 +18,7 @@ cd $WORKSPACE/srcdir/adwaita-icon-theme-*/

# Install native gtk+3.0 so that we get `gtk-encode-symbolic-svg`
apk add gtk+3.0 librsvg
./autogen.sh --prefix=${prefix} --build=${MACHTYPE} --host=${target}
./configure --prefix=${prefix} --build=${MACHTYPE} --host=${target}
make -j${nproc}
make install
Expand Down