]> git.pld-linux.org Git - packages/OGLFT.git/blame - OGLFT.spec
- initial PLD release
[packages/OGLFT.git] / OGLFT.spec
CommitLineData
e9c08536
TP
1Summary: OpenGL-FreeType Library
2Name: OGLFT
3Version: 0.9
4Release: 1
5License: LGPL
6Group: Libraries
7Source0: http://downloads.sourceforge.net/oglft/oglft-%{version}.tar.gz
8# Source0-md5: c3a8e0993f98edb7611c20f46631d2a6
9URL: http://oglft.sourceforge.net/
10BuildRequires: autoconf
11BuildRequires: automake
12BuildRequires: freetype-devel
13BuildRequires: gle-devel
14BuildRequires: libtool
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18C++ library that supplies an interface between the fonts on a system
19and an OpenGL or Mesa application. It uses the excellent FreeType
20library to read font faces from their files and renders text strings
21as OpenGL primitives.
22
23%package devel
24Summary: Header files for OGLFT
25Group: Development/Libraries
26Requires: %{name} = %{version}-%{release}
27
28%description devel
29Header files for OGLFT.
30
31%package static
32Summary: Static version of OGLFT
33Group: Development/Libraries
34Requires: %{name}-devel = %{version}-%{release}
35
36%description static
37Static version of OGLFT.
38
39%prep
40%setup -q -n oglft-%{version}
41
42%build
43%{__aclocal}
44%{__autoconf}
45%{__autoheader}
46%{__automake}
47%{__libtoolize}
48%configure
49%{__make}
50
51%install
52rm -rf $RPM_BUILD_ROOT
53
54%{__make} install \
55 DESTDIR=$RPM_BUILD_ROOT
56
57%clean
58rm -rf $RPM_BUILD_ROOT
59
60%files
61%defattr(644,root,root,755)
62%doc AUTHORS ChangeLog NEWS README
63%attr(755,root,root) %{_libdir}/libOGLFT.so.1.*.*
64%attr(755,root,root) %ghost %{_libdir}/libOGLFT.so.1
65
66%files devel
67%defattr(644,root,root,755)
68%doc doc/html
69%{_includedir}/oglft
70%attr(755,root,root) %{_libdir}/libOGLFT.so
71%{_libdir}/libOGLFT.la
72
73%files static
74%defattr(644,root,root,755)
75%{_libdir}/libOGLFT.a
This page took 0.050223 seconds and 4 git commands to generate.