source: projects/specs/trunk/f/fribidi/fribidi-vl.spec @ 521

Revision 521, 2.1 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Name: fribidi
2Version: 0.10.9
3Release: 1%{?_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* Mon Jun  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.9-1
64- applied new versioning policy
65
66* Sun Jan 13 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.9-0vl1
67- new upstream release
68
69* Sun Mar 19 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.7-0vl1
70- new upstream release
71
72* Tue Aug 10 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.10.4-0vl2
73- update URL
74
75* Sat May  1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.10.4-0vl1
76- change build method, %%files and Group for VineSeed
77
78* Tue Mar 12 2002  Behdad Esfahbod <behdad@bamdad.org>
79- Use License instead of Copyright
80- Moved pkgconfig to devel package instead of lib package.
81
82* Sat Jan 26 2002  Behdad Esfahbod <behdad@bamdad.org>
83- CFLAGS changed to OPT_CFLAGS.
84
85* Wed Jan  9 2002  Behdad Esfahbod <behdad@bamdad.org>
86- First spec released.
Note: See TracBrowser for help on using the repository browser.