source: projects/specs/branches/6/f/fribidi/fribidi-vl.spec @ 1897

Revision 1897, 2.2 KB checked in by Takemikaduchi, 14 years ago (diff)

rebuild with rpm-4.8.1

Line 
1Name: fribidi
2Version: 0.10.9
3Release: 2%{?_dist_release}
4License: LGPL
5Source: hhttp://fribidi.org/download/%{name}-%{version}.tar.gz
6URL: http://freedesktop.org/Software/FriBidi
7Summary: Library implementing the Unicode Bidirectional Algorithm
8Group: System Environment/Libraries
9BuildRoot: %{_tmppath}/%{name}-%{version}-root
10
11%description
12A library to handle bidirectional scripts (eg. hebrew, arabic), so that
13the display is done in the proper way; while the text data itself is
14always written in logical order.
15
16%package devel
17Summary: Library implementing the Unicode Bidirectional Algorithm
18Group: Development/Libraries
19Requires: %{name} = %{version}-%{release}
20
21%description devel
22This package includes the static libraries and header files
23for the fribidi package.
24Install if you want to develop programs which will use fribidi.
25
26%prep
27%setup -q
28
29%build
30%configure
31 
32make
33
34%install
35rm -rf $RPM_BUILD_ROOT
36make DESTDIR=$RPM_BUILD_ROOT install
37
38rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
39
40%clean
41rm -rf $RPM_BUILD_ROOT
42
43%post -p /sbin/ldconfig
44
45%postun -p /sbin/ldconfig
46
47%files
48%defattr(-, root, root)
49%doc README AUTHORS COPYING ChangeLog TODO THANKS NEWS
50%{_bindir}/%{name}
51%{_libdir}/*.so.*
52
53%files devel
54%defattr(-, root, root)
55%{_bindir}/%{name}-config
56%{_libdir}/*.a
57#{_libdir}/*.la
58%{_libdir}/*.so
59%{_includedir}/*
60%{_libdir}/pkgconfig/%{name}.pc
61
62%changelog
63* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.9-2
64- rebuild with rpm-4.8.1 for pkg-config file
65
66* Mon Jun  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.9-1
67- applied new versioning policy
68
69* Sun Jan 13 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.9-0vl1
70- new upstream release
71
72* Sun Mar 19 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.7-0vl1
73- new upstream release
74
75* Tue Aug 10 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.10.4-0vl2
76- update URL
77
78* Sat May  1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.10.4-0vl1
79- change build method, %%files and Group for VineSeed
80
81* Tue Mar 12 2002  Behdad Esfahbod <behdad@bamdad.org>
82- Use License instead of Copyright
83- Moved pkgconfig to devel package instead of lib package.
84
85* Sat Jan 26 2002  Behdad Esfahbod <behdad@bamdad.org>
86- CFLAGS changed to OPT_CFLAGS.
87
88* Wed Jan  9 2002  Behdad Esfahbod <behdad@bamdad.org>
89- First spec released.
Note: See TracBrowser for help on using the repository browser.