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

Revision 6732, 2.3 KB checked in by tomop, 12 years ago (diff)

fribidi-0.19.2-1

Line 
1Name: fribidi
2Version: 0.19.2
3Release: 1%{?_dist_release}
4License: LGPL
5Source: hhttp://fribidi.org/download/%{name}-%{version}.tar.gz
6URL: http://fribidi.org
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%{_libdir}/*.a
56#{_libdir}/*.la
57%{_libdir}/*.so
58%{_includedir}/*
59%{_libdir}/pkgconfig/%{name}.pc
60%{_mandir}/man3/%{name}_*.gz
61
62%changelog
63* Tue Aug 14 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.19.2-1
64- new upstream release.
65
66* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.9-2
67- rebuild with rpm-4.8.1 for pkg-config file
68
69* Mon Jun  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.9-1
70- applied new versioning policy
71
72* Sun Jan 13 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.9-0vl1
73- new upstream release
74
75* Sun Mar 19 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.7-0vl1
76- new upstream release
77
78* Tue Aug 10 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.10.4-0vl2
79- update URL
80
81* Sat May  1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.10.4-0vl1
82- change build method, %%files and Group for VineSeed
83
84* Tue Mar 12 2002  Behdad Esfahbod <behdad@bamdad.org>
85- Use License instead of Copyright
86- Moved pkgconfig to devel package instead of lib package.
87
88* Sat Jan 26 2002  Behdad Esfahbod <behdad@bamdad.org>
89- CFLAGS changed to OPT_CFLAGS.
90
91* Wed Jan  9 2002  Behdad Esfahbod <behdad@bamdad.org>
92- First spec released.
Note: See TracBrowser for help on using the repository browser.