]> git.pld-linux.org Git - packages/libsvgtiny.git/blobdiff - libsvgtiny.spec
- pl
[packages/libsvgtiny.git] / libsvgtiny.spec
index 625ed17c50dd460c3c18267bc715b1ba49914e2c..c6304cb1ba6df6362a48cc133279c4343a1d9d88 100644 (file)
@@ -3,6 +3,7 @@
 %bcond_without static_libs     # don't build static library
 
 Summary:       Implementation of SVG Tiny
+Summary(pl.UTF-8):     Implementacja SVG Tiny
 Name:          libsvgtiny
 Version:       0.1.1
 Release:       1
@@ -15,6 +16,9 @@ BuildRequires:        gperf
 BuildRequires: libdom-devel >= 0.1.0
 BuildRequires: libwapcaplet-devel >= 0.2.1
 BuildRequires: netsurf-buildsystem >= 1.1
+BuildRequires: pkgconfig
+Requires:      libdom >= 0.1.0
+Requires:      libwapcaplet >= 0.2.1
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -26,28 +30,38 @@ The overall idea of the library is to take some SVG as input, and
 return a list of paths and texts which can be rendered easily. The
 library does not do the actual rendering.
 
+%description -l pl.UTF-8
+Libsvgtiny to implementacja SVG Tiny napisana w C. Jest obecnie
+rozwijana do wykorzystania w ramach projektu NetSurf, ale także z
+myślą o możliwości użycia w innych projektach.
+
+Ogólna idea biblioteki polega na przyjęciu SVG na wejściu i zwróceniu
+listy ścieżek oraz tekstów, które można łatwo wyrenderować. Biblioteka
+nie wykonuje samego renderowania.
+
 %package devel
 Summary:       libsvgtiny library headers
 Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki libsvgtiny
 Group:         Development/Libraries
 Requires:      %{name} = %{version}-%{release}
+Requires:      libdom-devel >= 0.1.0
 
 %description devel
-This is the libraries, include files and other resources you can use
-to incorporate libsvgtiny into applications.
+This package contains the include files and other resources you can
+use to incorporate libsvgtiny into applications.
 
 %description devel -l pl.UTF-8
 Pliki nagłówkowe pozwalające na używanie biblioteki libsvgtiny w
 swoich programach.
 
 %package static
-Summary:       libsvgtiny static libraries
-Summary(pl.UTF-8):     Statyczne biblioteki libsvgtiny
+Summary:       libsvgtiny static library
+Summary(pl.UTF-8):     Statyczna biblioteka libsvgtiny
 Group:         Development/Libraries
 Requires:      %{name}-devel = %{version}-%{release}
 
 %description static
-This is package with static libsvgtiny libraries.
+This is package with static libsvgtiny library.
 
 %description static -l pl.UTF-8
 Statyczna biblioteka libsvgtiny.
@@ -60,28 +74,34 @@ export CC="%{__cc}"
 export CFLAGS="%{rpmcflags}"
 export LDFLAGS="%{rpmldflags}"
 
-%{__make} Q= \
+%{__make} \
+       Q= \
        PREFIX=%{_prefix} \
+       LIBDIR=%{_lib} \
        COMPONENT_TYPE=lib-shared
 
 %if %{with static_libs}
-%{__make} Q= \
+%{__make} \
+       Q= \
        PREFIX=%{_prefix} \
+       LIBDIR=%{_lib} \
        COMPONENT_TYPE=lib-static
 %endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
-%{__make} install Q= \
-       lib=%{_lib} \
+%{__make} install \
+       Q= \
        PREFIX=%{_prefix} \
+       LIBDIR=%{_lib} \
        COMPONENT_TYPE=lib-shared \
        DESTDIR=$RPM_BUILD_ROOT
 
 %if %{with static_libs}
-%{__make} install Q= \
-       lib=%{_lib} \
+%{__make} install \
+       Q= \
        PREFIX=%{_prefix} \
+       LIBDIR=%{_lib} \
        COMPONENT_TYPE=lib-static \
        DESTDIR=$RPM_BUILD_ROOT
 %endif
@@ -94,12 +114,13 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%doc README
 %attr(755,root,root) %{_libdir}/libsvgtiny.so.*.*.*
-%ghost %{_libdir}/libsvgtiny.so.0
+%attr(755,root,root) %ghost %{_libdir}/libsvgtiny.so.0
 
 %files devel
 %defattr(644,root,root,755)
-%{_libdir}/libsvgtiny.so
+%attr(755,root,root) %{_libdir}/libsvgtiny.so
 %{_includedir}/svgtiny.h
 %{_pkgconfigdir}/libsvgtiny.pc
 
This page took 0.111285 seconds and 4 git commands to generate.