-
Notifications
You must be signed in to change notification settings - Fork 0
/
libax25.spec.in
74 lines (56 loc) · 1.8 KB
/
libax25.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
Name: libax25
Version: @BASEVERSION@.@EXTRAVERSION@
Release: 1%{?dist}
Summary: AX.25 library for hamradio applications
License: LGPLv2+
URL: http://www.linux-ax25.org/
Source0: http://www.linux-ax25.org/pub/%{name}/%{name}-@[email protected]
BuildRequires: gcc
BuildRequires: zlib-devel
%description
libax25 is a library for ham radio applications that use the AX.25, NETROM
or ROSE protocols. Included are routines to do ax25 address parsing, common
ax25 application config file parsing, etc.
%package devel
Summary: Development files for %{name}
Requires: %{name} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%package static
Summary: Static library files for %{name}
Requires: %{name}-static = %{version}-%{release}
%description static
The %{name}-static package contains the libax25 and libax25io libraries
for static linking. You only need these for static linking applications.
%prep
%setup -q -n %{name}-@VERSION@
%build
%configure
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install
make DESTDIR=$RPM_BUILD_ROOT installconf
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%doc AUTHORS ChangeLog COPYING README
%dir %{_sysconfdir}/ax25
%config(noreplace) %{_sysconfdir}/ax25/axports
%config(noreplace) %{_sysconfdir}/ax25/nrports
%config(noreplace) %{_sysconfdir}/ax25/rsports
%{_libdir}/*.so.*
%{_mandir}/man5/*.5*
%files devel
%{_includedir}/*
%{_libdir}/*.so
%{_mandir}/man3/*.3*
%files static
%{_libdir}/*.a
%changelog
* Sat Jun 27 2009 Ralf Baechle <[email protected]>
- Initial version