forked from pool/hicolor-icon-theme
Accepting request 1240448 from GNOME:Factory
- Update to version 0.18: * Provide a pkgconfig file * Create HiDPI directories * Port build system to Meson - Create devel subpackage for pkgconfig file - Create all directories under symbolic (needed by budgie-desktop) - Create 1024x1024 HiDPI directories (forwarded request 1239096 from gmbr3) OBS-URL: https://build.opensuse.org/request/show/1240448 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/hicolor-icon-theme?expand=0&rev=35
This commit is contained in:
commit
54134af628
BIN
hicolor-icon-theme-0.17.tar.xz
(Stored with Git LFS)
BIN
hicolor-icon-theme-0.17.tar.xz
(Stored with Git LFS)
Binary file not shown.
3
hicolor-icon-theme-0.18.tar.xz
Normal file
3
hicolor-icon-theme-0.18.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:db0e50a80aa3bf64bb45cbca5cf9f75efd9348cf2ac690b907435238c3cf81d7
|
||||||
|
size 29624
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 20 17:34:10 UTC 2025 - Callum Farmer <gmbr3@opensuse.org>
|
||||||
|
|
||||||
|
- Update to version 0.18:
|
||||||
|
* Provide a pkgconfig file
|
||||||
|
* Create HiDPI directories
|
||||||
|
* Port build system to Meson
|
||||||
|
- Create devel subpackage for pkgconfig file
|
||||||
|
- Create all directories under symbolic
|
||||||
|
(needed by budgie-desktop)
|
||||||
|
- Create 1024x1024 HiDPI directories
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 21 13:49:48 UTC 2022 - Fabio Pesari <fpesari@tuxfamily.org>
|
Mon Nov 21 13:49:48 UTC 2022 - Fabio Pesari <fpesari@tuxfamily.org>
|
||||||
|
|
||||||
|
@ -15,46 +15,65 @@
|
|||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
%define hicolor_dir_list {{actions,\
|
||||||
|
animations,apps,categories,devices,emblems,emotes,filesystems,\
|
||||||
|
intl,mimetypes,places,status,\
|
||||||
|
stock,stock/chart,stock/code,stock/data,stock/form,\
|
||||||
|
stock/image,stock/io,stock/media,stock/navigation,\
|
||||||
|
stock/net,stock/object,stock/table,stock/text}} %{nil}
|
||||||
|
|
||||||
Name: hicolor-icon-theme
|
Name: hicolor-icon-theme
|
||||||
Version: 0.17
|
Version: 0.18
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Fallback Icon Theme
|
Summary: Fallback Icon Theme
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: System/X11/Utilities
|
Group: System/X11/Utilities
|
||||||
URL: https://freedesktop.org/wiki/Software/icon-theme/
|
URL: https://freedesktop.org/wiki/Software/icon-theme/
|
||||||
Source: http://icon-theme.freedesktop.org/releases/%{name}-%{version}.tar.xz
|
Source0: https://icon-theme.freedesktop.org/releases/%{name}-%{version}.tar.xz
|
||||||
Source1: macros.hicolor
|
Source1: macros.hicolor
|
||||||
Source99: %{name}-rpmlintrc
|
Source99: %{name}-rpmlintrc
|
||||||
|
BuildRequires: meson
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This is the default fallback theme used by implementations of the icon
|
This is the default fallback theme used by implementations of the icon
|
||||||
theme specification.
|
theme specification.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for hicolor-icon-theme
|
||||||
|
Group: Development/Libraries/Other
|
||||||
|
Requires: %{name} = %{version}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
A package containing the development files for hicolor-icon-theme
|
||||||
|
Currently, there is only a pkgconfig file
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%meson
|
||||||
make %{?_smp_mflags}
|
%meson_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%meson_install
|
||||||
touch %{buildroot}%{_datadir}/icons/hicolor/icon-theme.cache
|
touch %{buildroot}%{_datadir}/icons/hicolor/icon-theme.cache
|
||||||
chmod -x COPYING
|
chmod -x COPYING
|
||||||
# Install rpm macros
|
# Install rpm macros
|
||||||
install -D -m644 %{SOURCE1} %{buildroot}%_rpmmacrodir/macros.hicolor
|
install -D -m644 %{SOURCE1} %{buildroot}%{_rpmmacrodir}/macros.hicolor
|
||||||
# Add 1024x1024 directory for package ownership [default-icon-theme#3]
|
# Add 1024x1024 (+HiDPI) directory for package ownership [default-icon-theme#3]
|
||||||
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/1024x1024/{actions,\
|
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/{1024x1024,1024x1024@2}/%{hicolor_dir_list}
|
||||||
animations,apps,categories,devices,emblems,emotes,filesystems,\
|
# Make symbolic reflect scalable
|
||||||
intl,mimetypes,places,status,stock}
|
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/symbolic/%{hicolor_dir_list}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%doc ChangeLog README
|
%doc NEWS README.md
|
||||||
%ghost %{_datadir}/icons/hicolor/icon-theme.cache
|
%ghost %{_datadir}/icons/hicolor/icon-theme.cache
|
||||||
%{_datadir}/icons/hicolor/
|
%{_datadir}/icons/hicolor/
|
||||||
%_rpmmacrodir/macros.hicolor
|
%{_rpmmacrodir}/macros.hicolor
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_datadir}/pkgconfig/default-icon-theme.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user