From 252aefcf5ece501d145fc642014ca0df67ce3778 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Tue, 3 Mar 2009 18:21:03 +0000 Subject: [PATCH] do not include static libraries in RPMs --- libyaml.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libyaml.spec b/libyaml.spec index 059ed10..0b15c8a 100644 --- a/libyaml.spec +++ b/libyaml.spec @@ -1,6 +1,6 @@ Name: libyaml Version: 0.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: YAML 1.1 parser and emitter written in C Group: Development/Libraries @@ -38,7 +38,7 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} make DESTDIR=%{buildroot} INSTALL="install -p" install -rm -f %{buildroot}%{_libdir}/*.la +rm -f %{buildroot}%{_libdir}/*.{la,a} %clean rm -rf %{buildroot} @@ -60,11 +60,13 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc doc/html %{_libdir}/%{name}*.so -%{_libdir}/*a %{_includedir}/yaml.h %changelog +* Tue Mar 3 2009 John Eckersberg - 0.1.2-3 +- Remove static libraries + * Thu Feb 26 2009 John Eckersberg - 0.1.2-2 - Remove README and LICENSE from docs on -devel package - Remove -static package and merge contents into the -devel package