source: projects/specs/trunk/lib/libn/libndp/libndp-vl.spec @ 12368

Revision 12368, 1.8 KB checked in by tomop, 4 years ago (diff)

updated 5 packages

hddtemp-0.3-0.36.beta15

lshw-B.02.19.2-1

libndp-1.7-1

openssl-1.1.1f-1

smartmontools-7.1-1

Line 
1Summary:        Library for neighbor discovery protocol
2Name:           libndp
3Version:        1.7
4Release:        1%{?_dist_release}
5Group:          System Environment/Libraries
6Vendor:         Project Vine
7Distribution:   Vine Linux
8
9License:        LGPLv2.1
10URL:            http://libndp.org/
11Source0:        https://github.com/jpirko/libndp/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15
16%description
17This package contains a library which provides a wrapper for IPv6
18Neighbor Discovery Protocol. It also provides a tool named ndptool
19for sending and receiving NDP messages
20
21
22%package                devel
23Summary:        Development tools for %{name}
24Summary(ja):    %{name} の開発環境
25Group:          Development/Libraries
26Requires:       %{name} = %{version}-%{release}
27Requires:       pkgconfig
28
29%description    devel
30Header files and libraries for building a extension library for the
31%{name}.
32
33
34%prep
35%setup -q
36
37%build
38./autogen.sh
39%configure \
40        --disable-static
41
42make %{?_smp_mflags}
43
44%install
45rm -rf $RPM_BUILD_ROOT
46
47make install DESTDIR=$RPM_BUILD_ROOT
48
49rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%post -p /sbin/ldconfig
55
56%postun -p /sbin/ldconfig
57
58%files
59%defattr(-,root,root,-)
60%license COPYING
61%doc README
62%{_bindir}/ndptool
63%{_libdir}/libndp.so.*
64%{_mandir}/man8/ndptool.8.gz
65
66%files devel
67%defattr(-, root, root)
68%{_includedir}/ndp.h
69%{_libdir}/libndp.so
70%{_libdir}/pkgconfig/libndp.pc
71
72
73%changelog
74* Wed Apr 08 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.7-1
75- new upstream release.
76
77* Wed Jun 15 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.6-1
78- new upstream release.
79
80* Sat Oct 31 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5-1
81- new upstream release
82
83* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4-1
84- initial build
Note: See TracBrowser for help on using the repository browser.