-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdodo.spec
35 lines (26 loc) · 832 Bytes
/
dodo.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Name: dodo
Version: %{version}
Release: 1%{?dist}
Summary: RPM Package for dodo test runner
Source0: %{name}-%{version}.tgz
License: None
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%description
Functional test runner for Python based application
%prep
%setup -n Dodo/dodo
%build
%install
mkdir -p %{buildroot}/usr/bin/
cp dodo %{buildroot}/usr/bin/
mkdir -p %{buildroot}/usr/lib64/python3.6/site-packages/dodo
mkdir -p %{buildroot}/usr/lib64/python3.6/site-packages/dodo/formatters
cp -rp . %{buildroot}/usr/lib64/python3.6/site-packages/dodo
%files
/usr/bin/dodo
/usr/lib64/python3.6/site-packages/dodo
%changelog
* Mon Feb 10 2020 Malhar Vora <[email protected]>
- Complete working spec file
* Tue Oct 22 2019 Madhura Mande <[email protected]>
- Initial Dodo spec file