12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- Summary: YAML 1.1 parser and emitter written in C
- Name: libyaml
- Version: 0.1.2
- Release: 1%{?_dist_release}
- Group: Development/Libraries
- License: MIT
- URL: http://pyyaml.org/
- Source0: http://pyyaml.org/download/libyaml/yaml-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- %description
- YAML is a data serialization format designed for human readability and
- interaction with scripting languages. LibYAML is a YAML parser and
- emitter written in C.
- %package devel
- Summary: Development libraries and headers for developing LibYAML applications
- Group: Development/Libraries
- Requires: libyaml = %{version}-%{release}
- %description devel
- Development libraries and headers for developing LibYAML applications.
- %prep
- %setup -q -n yaml-%{version}
- %build
- %configure
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make DESTDIR=%{buildroot} INSTALL="install -p" install
- rm -f %{buildroot}%{_libdir}/*.{la,a}
- %clean
- rm -rf %{buildroot}
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %doc README LICENSE
- %{_libdir}/%{name}*.so.*
- %files devel
- %defattr(-,root,root,-)
- %doc doc/html
- %{_libdir}/%{name}*.so
- %{_includedir}/yaml.h
- %changelog
- * Wed Jun 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.1.2-1
- - initial build for Vine Linux
- * Tue Mar 3 2009 John Eckersberg <jeckersb@redhat.com> - 0.1.2-3
- - Remove static libraries
- * Thu Feb 26 2009 John Eckersberg <jeckersb@redhat.com> - 0.1.2-2
- - Remove README and LICENSE from docs on -devel package
- - Remove -static package and merge contents into the -devel package
- * Wed Feb 25 2009 John Eckersberg <jeckersb@redhat.com> - 0.1.2-1
- - Initial packaging for Fedora
|