c3b152f3ee
We are going to want versioning on the jigdo RPMs, since it's highly likely things change. This is done via new magic '-D rpmostree_jigdo_meta` macro, which we can also use for other things down the line. Closes: #1135 Approved by: jlebon
25 lines
596 B
RPMSpec
25 lines
596 B
RPMSpec
# The canonical version of this is in https://pagure.io/fedora-atomic
|
|
# Suppress most build root processing we are just carrying
|
|
# binary data.
|
|
%global __os_install_post /usr/lib/rpm/brp-compress %{nil}
|
|
Name: fedora-atomic-host
|
|
Version: %{ostree_version}
|
|
Release: 1%{?dist}
|
|
Summary: Image (rpm-ostree jigdo) for Fedora Atomic Host
|
|
License: MIT
|
|
%{rpmostree_jigdo_meta}
|
|
|
|
%description
|
|
%{summary}
|
|
|
|
%prep
|
|
|
|
%build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_prefix}/lib/ostree-jigdo/%{name}
|
|
for x in *; do mv ${x} %{buildroot}%{_prefix}/lib/ostree-jigdo/%{name}; done
|
|
|
|
%files
|
|
%{_prefix}/lib/ostree-jigdo/%{name}
|