]> git.pld-linux.org Git - packages/fribidi.git/blob - fribidi.spec
- package man3 pages
[packages/fribidi.git] / fribidi.spec
1 # TODO:
2 # - Deal with unpackaged man files
3 #
4 Summary:        GNU FriBidi - library implementing the Unicode BiDi algorithm
5 Summary(pl.UTF-8):      GNU FriBidi - biblioteka implementująca algorytm Unicode BiDi
6 Name:           fribidi
7 Version:        0.19.2
8 Release:        1
9 License:        LGPL v2.1+
10 Group:          Libraries
11 Source0:        http://fribidi.org/download/%{name}-%{version}.tar.gz
12 # Source0-md5:  626db17d2d99b43615ad9d12500f568a
13 URL:            http://fribidi.freedesktop.org/
14 BuildRequires:  autoconf >= 2.56
15 BuildRequires:  automake
16 BuildRequires:  libtool
17 Obsoletes:      libfribidi0
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 GNU FriBidi is a free Implementation of the Unicode BiDi algorithm.
22
23 %description -l pl.UTF-8
24 GNU FriBidi to wolnodostępna implementacja algorytmu Unicode BiDi.
25
26 %package devel
27 Summary:        Header files for FriBidi library
28 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki FriBidi
29 Group:          Development/Libraries
30 Requires:       %{name} = %{version}-%{release}
31 Obsoletes:      libfribidi0-devel
32
33 %description devel
34 The fribidi-devel package includes header files for the fribidi
35 package.
36
37 %description devel -l pl.UTF-8
38 Pliki programistyczne pozwalające na wykorzystywanie biblioteki
39 fribidi w swoim oprogramowaniu.
40
41 %package static
42 Summary:        Static FriBidi library
43 Summary(pl.UTF-8):      Biblioteka statyczna FriBidi
44 Group:          Development/Libraries
45 Requires:       %{name}-devel = %{version}-%{release}
46
47 %description static
48 Static FriBidi library.
49
50 %description static -l pl.UTF-8
51 Biblioteka statyczna FriBidi.
52
53 %prep
54 %setup -q
55
56 %build
57 %{__libtoolize}
58 %{__aclocal}
59 %{__autoheader}
60 %{__autoconf}
61 %{__automake}
62 %configure
63 %{__make}
64
65 %install
66 rm -rf $RPM_BUILD_ROOT
67
68 %{__make} install \
69         DESTDIR=$RPM_BUILD_ROOT
70
71 %clean
72 rm -rf $RPM_BUILD_ROOT
73
74 %post   -p /sbin/ldconfig
75 %postun -p /sbin/ldconfig
76
77 %files
78 %defattr(644,root,root,755)
79 %doc AUTHORS ChangeLog NEWS README THANKS TODO
80 %attr(755,root,root) %{_bindir}/fribidi
81 %attr(755,root,root) %{_libdir}/libfribidi.so.*.*.*
82 %attr(755,root,root) %ghost %{_libdir}/libfribidi.so.0
83
84 %files devel
85 %defattr(644,root,root,755)
86 %attr(755,root,root) %{_libdir}/libfribidi.so
87 %{_libdir}/libfribidi.la
88 %{_includedir}/fribidi
89 %{_pkgconfigdir}/fribidi.pc
90 %{_mandir}/man3/fribidi_*.3*
91
92 %files static
93 %defattr(644,root,root,755)
94 %{_libdir}/libfribidi.a
This page took 0.071702 seconds and 3 git commands to generate.