]> git.pld-linux.org Git - SPECS.git/blob - xorg-lib-libFS.spec
SPECS updated Sun 1 Aug 20:13:02 CEST 2021
[SPECS.git] / xorg-lib-libFS.spec
1 Summary:        libFS - X Font Service client library
2 Summary(pl.UTF-8):      libFS - biblioteka kliencka usługi fontów X (X Font Service)
3 Name:           xorg-lib-libFS
4 Version:        1.0.8
5 Release:        1
6 License:        MIT
7 Group:          X11/Libraries
8 Source0:        https://xorg.freedesktop.org/releases/individual/lib/libFS-%{version}.tar.bz2
9 # Source0-md5:  4e1196275aa743d6ebd3d3d5ec1dff9c
10 URL:            https://xorg.freedesktop.org/
11 BuildRequires:  autoconf >= 2.60
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRequires:  pkgconfig >= 1:0.19
15 BuildRequires:  xorg-lib-xtrans-devel
16 BuildRequires:  xorg-proto-fontsproto-devel
17 BuildRequires:  xorg-proto-xproto-devel >= 7.0.17
18 BuildRequires:  xorg-util-util-macros >= 1.8
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 This package contains libFS, an X Font Service client library. It's
23 used by clients of X Font Servers (xfs), such as xfsinfo, xfslsfonts,
24 and the X servers themselves.
25
26 %description -l pl.UTF-8
27 Ten pakiet zawiera libFS - bibliotekę kliencką usługi fontów X (X Font
28 Service). Jest ona używana przez klientów serwerów fontów X (xfs - X
29 Font Servers), takich jak xfsinfo, xfslsfonts czy same serwery X.
30
31 %package devel
32 Summary:        Header files for libFS library
33 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libFS
34 Group:          X11/Development/Libraries
35 Requires:       %{name} = %{version}-%{release}
36 Requires:       xorg-proto-fontsproto-devel
37 Requires:       xorg-proto-xproto-devel >= 7.0.17
38
39 %description devel
40 libFS - biblioteka kliencka usługi fontów X (X Font Service).
41
42 This package contains the header files needed to develop programs that
43 use libFS.
44
45 %description devel -l pl.UTF-8
46 libFS - biblioteka kliencka usługi fontów X (X Font Service).
47
48 Pakiet zawiera pliki nagłówkowe niezbędne do kompilowania programów
49 używających biblioteki libFS.
50
51 %package static
52 Summary:        Static libFS library
53 Summary(pl.UTF-8):      Biblioteka statyczna libFS
54 Group:          X11/Development/Libraries
55 Requires:       %{name}-devel = %{version}-%{release}
56
57 %description static
58 libFS - biblioteka kliencka usługi fontów X (X Font Service).
59
60 This package contains the static libFS library.
61
62 %description static -l pl.UTF-8
63 libFS - biblioteka kliencka usługi fontów X (X Font Service).
64
65 Pakiet zawiera statyczną bibliotekę libFS.
66
67 %prep
68 %setup -q -n libFS-%{version}
69
70 %build
71 %{__libtoolize}
72 %{__aclocal}
73 %{__autoconf}
74 %{__autoheader}
75 %{__automake}
76 %configure
77
78 %{__make}
79
80 %install
81 rm -rf $RPM_BUILD_ROOT
82
83 %{__make} install \
84         DESTDIR=$RPM_BUILD_ROOT
85
86 # packaged as %doc
87 %{__rm} $RPM_BUILD_ROOT%{_docdir}/libFS/FSlib.txt
88
89 %clean
90 rm -rf $RPM_BUILD_ROOT
91
92 %post   -p /sbin/ldconfig
93 %postun -p /sbin/ldconfig
94
95 %files
96 %defattr(644,root,root,755)
97 %doc COPYING ChangeLog README.md
98 %attr(755,root,root) %{_libdir}/libFS.so.*.*.*
99 %attr(755,root,root) %ghost %{_libdir}/libFS.so.6
100
101 %files devel
102 %defattr(644,root,root,755)
103 %doc doc/FSlib.txt
104 %attr(755,root,root) %{_libdir}/libFS.so
105 %{_libdir}/libFS.la
106 %{_includedir}/X11/fonts/FSlib.h
107 %{_pkgconfigdir}/libfs.pc
108
109 %files static
110 %defattr(644,root,root,755)
111 %{_libdir}/libFS.a
This page took 0.042654 seconds and 3 git commands to generate.