This moves us one step closer to a normal source package. The sources are now unpacked and we run "make install". We still don't build since we don't have all the necessary tools. Also, most importantly, the source tarball now includes our actual sources in addition to the prebuilt binaries.
27 lines
486 B
RPMSpec
27 lines
486 B
RPMSpec
Name: subscription-manager-cockpit
|
|
Version: 1
|
|
Release: 0
|
|
Summary: Subscription Manager Cockpit UI
|
|
License: LGPLv2.1+
|
|
|
|
Source: subscription-manager-cockpit.tar.gz
|
|
BuildArch: noarch
|
|
|
|
Requires: subscription-manager
|
|
|
|
%define debug_package %{nil}
|
|
|
|
%description
|
|
Subscription Manager Cockpit UI
|
|
|
|
%prep
|
|
%setup -n subscription-manager-cockpit
|
|
|
|
%build
|
|
|
|
%install
|
|
make install-only DESTDIR=%{buildroot}
|
|
find %{buildroot} -type f >> files.list
|
|
sed -i "s|%{buildroot}||" *.list
|
|
|
|
%files -f files.list
|