commit 191d643ef40e90ac95e5ce659349e596d1ed141b Author: overweight <5324761+overweight@user.noreply.gitee.com> Date: Mon Sep 30 11:00:09 2019 -0400 Package init diff --git a/libyaml.spec b/libyaml.spec new file mode 100644 index 0000000..4b6f1cd --- /dev/null +++ b/libyaml.spec @@ -0,0 +1,67 @@ +Name: libyaml +Version: 0.2.2 +Release: 1 +Summary: A C library for parsing and emitting YAML +License: MIT +URL: http://pyyaml.org/ +Source0: http://pyyaml.org/download/libyaml/yaml-%{version}.tar.gz + +BuildRequires: gcc + +%description +${summary}. + +%package devel +Summary: Development files for LibYAML applications +Requires: libyaml = %{version}-%{release}, pkgconfig + +%description devel +%{summary}. + +%package help +Summary: Documents for using LibYAML +BuildArch: noarch + +%description help +%{summary}. + + +%prep +%autosetup -n yaml-%{version} -p1 + +%build +%configure --enable-static=no +%make_build + +%install +%make_install + +rm -vf %{buildroot}%{_libdir}/*.la + +%check +make check + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%license LICENSE +%doc README +%{_libdir}/%{name}*.so.* + + +%files devel +%defattr(-,root,root) +%{_libdir}/%{name}*.so +%{_libdir}/pkgconfig/yaml-0.1.pc +%{_includedir}/yaml.h + +%files help +%doc doc/html + + +%changelog +* Tue Sep 3 2019 openEuler Buildteam - 0.2.2-1 +- Package init diff --git a/yaml-0.2.2.tar.gz b/yaml-0.2.2.tar.gz new file mode 100644 index 0000000..1cfd67a Binary files /dev/null and b/yaml-0.2.2.tar.gz differ