2009-10-19 16:12:14 +00:00
|
|
|
Name: yaml-cpp
|
2010-04-02 11:30:43 +00:00
|
|
|
Version: 0.2.5
|
2010-01-18 10:07:56 +00:00
|
|
|
Release: 1%{?dist}
|
2009-10-19 16:12:14 +00:00
|
|
|
Summary: A YAML parser and emitter for C++
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: MIT
|
|
|
|
URL: http://code.google.com/p/yaml-cpp/
|
|
|
|
Source0: http://yaml-cpp.googlecode.com/files/%{name}-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: cmake
|
|
|
|
|
|
|
|
%description
|
|
|
|
yaml-cpp is a YAML parser and emitter in C++ written around the YAML 1.2 spec.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: MIT
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2010-01-18 10:07:56 +00:00
|
|
|
%setup -q
|
2009-10-19 16:12:14 +00:00
|
|
|
# Fix eol
|
|
|
|
sed -i 's/\r//' license.txt
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
# ask cmake to not strip binaries
|
|
|
|
%cmake .
|
|
|
|
make VERBOSE=1 %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc license.txt
|
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_includedir}/yaml-cpp/
|
|
|
|
%{_libdir}/*.so
|
|
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2010-04-02 11:30:43 +00:00
|
|
|
* Fri Apr 02 2010 Guido Grazioli <guido.grazioli@gmail.com> - 0.2.5-1
|
|
|
|
- Upstream 0.2.5
|
|
|
|
|
2010-01-18 10:07:56 +00:00
|
|
|
* Fri Jan 15 2010 Guido Grazioli <guido.grazioli@gmail.com> - 0.2.4-1
|
|
|
|
- Upstream 0.2.4
|
|
|
|
|
2009-10-19 16:12:14 +00:00
|
|
|
* Sat Oct 17 2009 Guido Grazioli <guido.grazioli@gmail.com> - 0.2.2-2
|
|
|
|
- Remove duplicate file
|
|
|
|
|
|
|
|
* Wed Oct 14 2009 Guido Grazioli <guido.grazioli@gmail.com> - 0.2.2-1
|
|
|
|
- Initial packaging
|