1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00
libwebsockets/libwebsockets.spec
Andy Green 8322b3700b uplevel-rpm-soname.patch
Signed-off-by: Andy Green <andy@warmcat.com>
2010-12-19 22:25:16 +00:00

60 lines
1.1 KiB
RPMSpec

Name: libwebsockets
Version: 0.1
Release: 34.gmaster_8f037e4c%{?dist}
Summary: Websocket Server Library
Group: System
License: GPL
URL: http://warmcat.com
Source0: %{name}-%{version}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: openssl-devel
Requires: openssl-devel
%description
Webserver server library
%package devel
Summary: Development files for libwebsockets
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: openssl-devel
%description devel
Development files for libwebsockets
%prep
%setup -q
%build
./configure --prefix=/usr --libdir=%{_libdir} --enable-openssl
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%attr(755,root,root) /usr/bin/libwebsockets-test-server
%attr(755,root,root)
/%{_libdir}/libwebsockets.so.0.0.2
/%{_libdir}/libwebsockets.so.0
/%{_libdir}/libwebsockets.so
/%{_libdir}/libwebsockets.la
%attr(755,root,root) /usr/share/libwebsockets-test-server
%doc
%files devel
%defattr(-,root,root,-)
/usr/include/*
%attr(755,root,root)
/%{_libdir}/libwebsockets.a
%changelog