blob: 5fb74ad35073c1c790deee6a0c0e558061979d98 (
plain)
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
36
37
38
39
40
41
42
43
|
Name: polecat
Version: 0.1.9
Release: 1%{?dist}
Summary: simple wine version manager
License: MIT
URL: https://github.com/Jan200101/polecat
Source0: %{url}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: libcurl-devel
BuildRequires: json-c-devel
BuildRequires: libarchive-devel
BuildRequires: cmake
BuildRequires: gcc gcc-c++
# DXVK functionality requires wine
Requires: wine
%description
polecat is wine manager that manages, installs and downloads wine for you
%prep
%autosetup
%build
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo
%cmake_build
%install
%cmake_install
%check
%ctest
%files
%license LICENSE
%{_bindir}/%{name}
%changelog
* Mon Nov 23 18:39:58 CET 2020 Jan Drögehoff <sentrycraft123@gmail.com> - 0.1.9-1
- Update to 1.9
* Sun Nov 22 22:21:50 CET 2020 Jan Drögehoff <sentrycraft123@gmail.com> - 0.1.8-1
- Initial spec
|