SHA256
6
0
forked from pool/libuv
Files
libuv/libuv.spec
Ismail Dönmez be3e79c5ca Accepting request 249525 from home:ldieckow:branches:devel:languages:parrot
libuv is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js, but it's also used by Mozilla's Rust language, Luvit, Julia, pyuv, and others.

OBS-URL: https://build.opensuse.org/request/show/249525
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=1
2014-09-16 10:17:12 +00:00

85 lines
2.6 KiB
RPMSpec

#
# spec file for package libuv
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libuv
Version: 0.11.29
Release: 17.1
%define somajor 11
Summary: Cross-platform asychronous I/O
License: MIT
Group: Development/Libraries/C and C++
Url: https://github.com/joyent/libuv
Source0: https://github.com/joyent/libuv/archive/v%{version}.tar.gz
BuildRequires: libtool
BuildRequires: pkg-config
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
libuv is a multi-platform support library with a focus on asynchronous I/O. It
was primarily developed for use by Node.js, but it's also used by Mozilla's
Rust language, Luvit, Julia, pyuv, and others.
%package -n libuv%{somajor}
Summary: Cross-platform asychronous I/O
Group: System/Libraries
%description -n libuv%{somajor}
libuv is a multi-platform support library with a focus on asynchronous I/O. It
was primarily developed for use by Node.js, but it's also used by Mozilla's
Rust language, Luvit, Julia, pyuv, and others.
%package devel
Summary: Development libraries for libuv
Group: Development/Libraries/C and C++
Requires: libuv%{somajor} = %{version}
BuildRequires: glibc-devel
%description devel
Development files for libuv
libuv is a multi-platform support library with a focus on asynchronous I/O. It
was primarily developed for use by Node.js, but it's also used by Mozilla's
Rust language, Luvit, Julia, pyuv, and others.
%prep
%setup -q -n %{name}-%{version}
%_buildshell autogen.sh
%build
%configure --disable-static
%install
%make_install
find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
%post -n libuv%{somajor} -p /sbin/ldconfig
%postun -n libuv%{somajor} -p /sbin/ldconfig
%files -n libuv%{somajor}
%defattr(-,root,root)
%{_libdir}/libuv.so.%{somajor}*
%files devel
%defattr(-,root,root)
%doc AUTHORS CONTRIBUTING.md ChangeLog LICENSE README.md
%{_libdir}/libuv.so
%{_includedir}/uv*
%{_libdir}/pkgconfig/libuv.pc
%changelog