This repository has been archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
open-rp.spec.in
78 lines (69 loc) · 2.15 KB
/
open-rp.spec.in
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#
# spec file for package @PACKAGE_TARNAME@
#
# Copyright (c) 2012 Darryl Sokoloski <[email protected]>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via @PACKAGE_BUGREPORT@
#
Name: @PACKAGE_TARNAME@
Version: @PACKAGE_VERSION@
Release: 1%{dist}
License: GPLv2+
Group: Amusements/Games/Other
Source: %{name}-%{version}.tar.gz
BuildRoot: %_tmppath/%name-%version-build
Summary: Open Remote Play
BuildRequires: curl-devel
BuildRequires: libffmpeg-devel
BuildRequires: openssl-devel
BuildRequires: SDL-devel
BuildRequires: SDL_image-devel
BuildRequires: SDL_net-devel
BuildRequires: SDL_ttf-devel
%if %suse_version >= 1140
BuildRequires: wxWidgets-devel
%define _use_internal_dependency_generator 0
%define __find_requires %wx_requires
%else
BuildRequires: wxGTK-devel
%endif
%description
Open Remote Play is an open source implementation of Sony Computer
Entertainment's Remote Play protocol. Remote Play is a feature on the
PlayStation 3 and PlayStation Portable which allows a PlayStation
Portable user to interact with their PlayStation 3's Xross Media Bar.
Users can access music, videos, photos, PlayStation games, The
PlayStation Store and various applications stored on the
PlayStation 3's HDD, or external flash drives and optical media
attached to the PlayStation 3.
Please report bugs to: @PACKAGE_BUGREPORT@
# Build
%prep
%setup -q
%{configure}
%build
make %{?_smp_mflags}
# Install
%install
make install DESTDIR=%{buildroot}
# Clean-up
%clean
[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
# Files
%files
%defattr(-,root,root)
%{_bindir}/orp
%{_bindir}/wxorp
%{_datadir}/%{name}
%doc AUTHORS
%doc README
%doc README.zh
%changelog