-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrivendell-producer.spec.in
More file actions
87 lines (68 loc) · 2.18 KB
/
Copy pathrivendell-producer.spec.in
File metadata and controls
87 lines (68 loc) · 2.18 KB
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
## rivendell-producer.spec.in
##
## Remote applets for the Rivendell Radio Automation System
##
## Copyright (C) 2016 Fred Gleason <fredg@paravelsystems.com>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of version 2 of the GNU General Public License as
## published by the Free Software Foundation;
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330,
## Boston, MA 02111-1307 USA
##
Summary: Remote applets for the Rivendell Radio Automation System
Name: rivendell-producer
Version: @VERSION@
Release: @RPM_RELEASE@%{?dist}
License: GPLv2
Packager: Fred Gleason <fredg@paravelsystems.com>
Group: Productivity/Multimedia/Other
Source: %{name}-@VERSION@.tar.gz
BuildRequires: qt-devel
BuildRoot: /var/tmp/%{name}-@VERSION@
%description
Rivendell-producer is a collection of applets for accessing a Rivendell
system remotely.
%prep
%setup
%build
%configure
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%post
if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
%{_bindir}/gtk-update-icon-cache -f --quiet %{_datadir}/icons/hicolor || :
fi
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_bindir}/rdadminb
%{_bindir}/rdlibraryb
%{_bindir}/rdlogeditb
%{_datadir}/icons/hicolor/16x16/apps/rdadminb.png
%{_datadir}/icons/hicolor/16x16/apps/rdlibraryb.png
%{_datadir}/icons/hicolor/16x16/apps/rdlogeditb.png
%{_datadir}/icons/hicolor/48x48/apps/rdadminb.png
%{_datadir}/icons/hicolor/48x48/apps/rdlibraryb.png
%{_datadir}/icons/hicolor/48x48/apps/rdlogeditb.png
%{_datadir}/applications/rivendell-producer-*.desktop
%{_datadir}/rivendell-producer/*
%doc AUTHORS
%doc ChangeLog
%doc COPYING
%doc NEWS
%doc README
%changelog
* Thu Feb 23 2017 Fred Gleason <fredg@paravelsystems.com>
-- Initial RPM creation.