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

Revision 12391, 2.7 KB checked in by tomop, 4 years ago (diff)

updated 3 packages

dkms-2.8.1-1

fribidi-1.0.9-1

git-2.26.2-1

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