libzypp-plugin-appdata/libzypp-plugin-appdata.spec
Bjørn Lie c40776b616 Accepting request 408627 from GNOME:Next
- InstallAppdata.sh: do not stumble over the presence of the
  appdata-failed.xml.gz file: this is for debug purpose and does
  not contain valid applications (boo#989031).
- Add awk Requires, as the latest modification relies on awk to
  find the right filenames.

OBS-URL: https://build.opensuse.org/request/show/408627
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libzypp-plugin-appdata?expand=0&rev=30
2016-07-15 08:36:45 +00:00

78 lines
2.7 KiB
RPMSpec

#
# spec file for package libzypp-plugin-appdata
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libzypp-plugin-appdata
Version: 1.0.1
Release: 0
Summary: Extend libzypp to handle AppStream metadata
License: MIT
Group: System/Libraries
Url: https://wiki.gnome.org/Design/Apps/Software
Source0: openSUSE-appstream-1.0.tar.xz
Source2: InstallAppdata.sh
BuildArch: noarch
# appstream-glib >= 0.3.6 is the first to correctly to appstream-util uninstall in /var/cache
Requires: appstream-glib >= 0.3.6
# appdata hook was introduced in libzypp 14.29.4
Requires: libzypp >= 14.29.4
# appstreamcli is provided by the AppStream package
Requires: AppStream
# The script uses awk to find the right filename for the appdata.xml.gz file
Requires: awk
%description
This plugin extends libzypp to install AppStream metadata, as extracted from the
repository metadata, onto the file system in order to be picked up by
software centers.
At this moment, gnome-software is the only known implementation making use of it.
%package -n openSUSE-appdata-extra
Summary: Additional Appstream Metadata
Group: System
%description -n openSUSE-appdata-extra
This package contains extra appstream metadata to be used by appstream-builder
%prep
%setup -q -n openSUSE-appstream-1.0
%build
%install
# install the additional appstream metadata
install -m 0755 -d %{buildroot}%{_datadir}/appdata-extra
cp appdata-extra/*/* %{buildroot}%{_datadir}/appdata-extra/
# Install AppData zypp plugin - temporarily disabled in favor of static AppStream metadata
install -Dm 0755 %{S:2} %{buildroot}%{_prefix}/lib/zypp/plugins/appdata/$(basename %{S:2})
%files
%defattr(-,root,root)
# zypp plugin triggering AppData update on repo refresh
%dir %{_prefix}/lib/zypp
%dir %{_prefix}/lib/zypp/plugins
%dir %{_prefix}/lib/zypp/plugins/appdata/
%{_prefix}/lib/zypp/plugins/appdata/InstallAppdata.sh
%files -n openSUSE-appdata-extra
%defattr(-,root,root)
%{_datadir}/appdata-extra/
%changelog