-
Notifications
You must be signed in to change notification settings - Fork 163
/
imagewriter.spec
123 lines (106 loc) · 3.15 KB
/
imagewriter.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#
# spec file for package imagewriter
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
%if 0%{?rhel_version} == 600
%define dist el6
%define breq qt-devel
%define backend hal-devel
%define qmake /usr/bin/qmake-qt4
%define lrelease /usr/bin/lrelease-qt4
%define definedbackend USEHAL
%endif
%if 0%{?fedora}
%define breq qt4-devel
%define backend udisks2
%define qmake /usr/bin/qmake-qt4
%define lrelease /usr/bin/lrelease-qt4
%define definedbackend USEUDISKS2
%endif
%if 0%{?mandriva_version}
%define breq libqt4-devel
%define backend hal-devel
%define qmake /usr/lib/qt4/bin/qmake
%define lrelease /usr/lib/qt4/bin/lrelease
%define definedbackend USEHAL
%endif
%if 0%{?suse_version}
%define breq libqt4-devel update-desktop-files
%define qmake /usr/bin/qmake
%define lrelease /usr/bin/lrelease
%endif
%if 0%{?suse_version} <= 1130
%define backend hal-devel
%define definedbackend USEHAL
%endif
%if 0%{?suse_version} == 1140 || 0%{?suse_version} == 1210
%define backend udisks
%define definedbackend USEUDISKS
%endif
%if 0%{?suse_version} >= 1220
%define backend udisks2
%define definedbackend USEUDISKS2
%endif
Name: imagewriter
Version: 1.10.1396965491.a4dcffa
Release: 0
Summary: Utility for writing disk images to USB keys
License: GPL-2.0
Group: Hardware/Other
Url: https://github.com/openSUSE/imagewriter
Source0: imagewriter-%{version}.tar.xz
BuildRequires: gcc-c++
BuildRequires: hicolor-icon-theme
BuildRequires: %{breq} %{backend}
BuildRequires: xz
Requires: xdg-utils
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
A graphical utility for writing raw disk images & hybrid ISOs to USB keys.
%prep
%setup -q
%build
# Create qmake cache file for building and use optflags.
cat > .qmake.cache <<EOF
PREFIX=%{_prefix}
QMAKE_CXXFLAGS_RELEASE += "%{optflags} -DKIOSKHACK"
DEFINES=%{definedbackend}
EOF
%{qmake}
make
%install
make INSTALL_ROOT=%{buildroot} install
%if 0%{?suse_version}
%suse_update_desktop_file imagewriter
%endif
%if 0%{?suse_version} >= 1140
%post
%desktop_database_post
%icon_theme_cache_post
%postun
%desktop_database_postun
%icon_theme_cache_postun
%endif
%files
%defattr(-,root,root)
%doc COPYING
%{_bindir}/imagewriter
%{_datadir}/applications/imagewriter.desktop
%{_datadir}/icons/hicolor/*/apps/imagewriter.*
%if 0%{?mandriva_version}
%{_mandir}/man1/imagewriter.1.*
%else
%{_mandir}/man1/imagewriter.1%{?ext_man}
%endif
%changelog