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

Revision 10366, 2.5 KB checked in by tomop, 8 years ago (diff)

fribidi-0.19.7-1

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