source: projects/specs/trunk/w/wslay/wslay-vl.spec @ 10775

Revision 10775, 1.6 KB checked in by ara_t, 8 years ago (diff)

rebuild with gcc-5.4.0

Line 
1%define ver 1.0.0
2%define rel 3
3
4Summary: The WebSocket library
5Name: wslay
6Version: %{ver}
7Release: %{rel}%{_dist_release}
8License: MIT
9Group: System Environment/Libraries
10URL: https://github.com/tatsuhiro-t/wslay/
11# https://github.com/tatsuhiro-t/wslay/releases
12Source0: %{name}-release-%{version}.tar.gz
13BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
14
15BuildRequires: nettle-devel
16BuildRequires: python-sphinx
17
18Vendor: Project Vine
19Distribution: Vine Linux
20Packager: iwaim
21
22%description
23Wslay is a WebSocket library written in C.
24It implements the protocol version 13 described in RFC 6455.
25
26%package devel
27Summary: Development libraries and headers for Wslay
28Group: Development/Libraries
29Requires: %{name} = %{version}-%{release}
30
31%description devel
32Development libraries and headers for Wslay.
33
34%prep
35%setup -q -n %{name}-release-%{version}
36autoreconf -i
37automake
38autoconf
39%configure --enable-shared --disable-static
40
41%build
42%__make
43
44%install
45rm -rf $RPM_BUILD_ROOT
46%makeinstall
47%__rm -f %{buildroot}%{_libdir}/*.la
48
49%clean
50rm -rf $RPM_BUILD_ROOT
51
52
53%files
54%defattr(-,root,root,-)
55%doc AUTHORS ChangeLog NEWS README.rst COPYING
56%{_libdir}/*.so.*
57
58%files devel
59%defattr(-,root,root,-)
60%doc AUTHORS ChangeLog NEWS README.rst COPYING
61%doc doc examples
62%{_bindir}/*
63%{_libdir}/*.so
64%{_libdir}/pkgconfig/*.pc
65%dir %{_includedir}/%{name}
66%{_includedir}/%{name}/*.h
67%{_mandir}/man3/*.3*
68
69%changelog
70* Sat Sep 03 2016 Toshiaki Ara <ara_t@384.jp> 1.0.0-3
71- rebuild with gcc-5.4.0
72
73* Tue Jan  5 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.0.0-2
74- rebuilt with nettle 3.1.1, gnutls 3.4.y
75
76* Mon Mar 23 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 1.0.0-1
77- Initial build.
Note: See TracBrowser for help on using the repository browser.