mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
21 lines
497 B
RPMSpec
21 lines
497 B
RPMSpec
Name: {{packageName}}
|
|
Summary: {{applicationName}}
|
|
Version: {{applicationVersion}}
|
|
Release: 1
|
|
License: MIT
|
|
|
|
%description
|
|
{{applicationName}}
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT/{{{executablePath}}} \
|
|
$RPM_BUILD_ROOT/{{{manifestPath}}}
|
|
|
|
cp %{_distdir}/{{{executableName}}} $RPM_BUILD_ROOT/{{{executablePath}}}
|
|
cp %{_distdir}/{{{manifestName}}} $RPM_BUILD_ROOT/{{{manifestPath}}}
|
|
|
|
%files
|
|
{{{executablePath}}}/{{{executableName}}}
|
|
{{{manifestPath}}}/{{{manifestName}}}
|