-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathetherlab.spec.in
More file actions
87 lines (72 loc) · 2.39 KB
/
etherlab.spec.in
File metadata and controls
87 lines (72 loc) · 2.39 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
#----------------------------------------------------------------------------
#
# $Id$
#
# Copyright (C) 2016 Richard Hacker (lerichi at gmx dot net)
#
# This file is part of the EtherLab package.
#
# EtherLab is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# EtherLab 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 EtherLab. See COPYING. If not, see <http://www.gnu.org/licenses/>.
#
#----------------------------------------------------------------------------
Name: etherlab
Version: @VERSION@
Release: 1
License: GPL-3.0+
Vendor: Ingenieurgemeinschaft IgH GmbH
URL: http://etherlab.org/en/etherlab
Source: %{name}-%{version}.tar.bz2
BuildRequires: cmake
BuildArch: noarch
#----------------------------------------------------------------------------
# Main Package
#----------------------------------------------------------------------------
Summary: Simulink Coder target
Group: Productivity/Other
%description
EtherLab is a Simulink Coder Target used to create user space
binaries that use the PdServ library.
#----------------------------------------------------------------------------
# Main Package
#----------------------------------------------------------------------------
%package devel
Summary: Simulink Coder target
Group: Productivity/Other
%description devel
EtherLab is a Simulink Coder Target used to create user space
binaries that use the PdServ library.
%files devel
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING NEWS README
%{_datadir}/%{name}
#----------------------------------------------------------------------------
%prep
%setup
%build
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DCMAKE_INSTALL_DATAROOTDIR=%{_datadir} \
-DTARGETDIR=%{name} \
..
%install
cd build
make DESTDIR=%{buildroot} install
%clean
rm -rf %{buildroot}
%changelog
* Sat Nov 26 2016 lerichi@gmx.net
- Updated for use with OBS
#----------------------------------------------------------------------------
# vim: tw=78