]> git.pld-linux.org Git - packages/OGLFT.git/commitdiff
- initial PLD release auto/th/OGLFT-0_9-1
authorTomasz Pala <gotar@pld-linux.org>
Mon, 2 Aug 2010 11:25:39 +0000 (11:25 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    OGLFT.spec -> 1.1

OGLFT.spec [new file with mode: 0644]

diff --git a/OGLFT.spec b/OGLFT.spec
new file mode 100644 (file)
index 0000000..7dc5de6
--- /dev/null
@@ -0,0 +1,75 @@
+Summary:       OpenGL-FreeType Library
+Name:          OGLFT
+Version:       0.9
+Release:       1
+License:       LGPL
+Group:         Libraries
+Source0:       http://downloads.sourceforge.net/oglft/oglft-%{version}.tar.gz
+# Source0-md5: c3a8e0993f98edb7611c20f46631d2a6
+URL:           http://oglft.sourceforge.net/
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: freetype-devel
+BuildRequires: gle-devel
+BuildRequires: libtool
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+C++ library that supplies an interface between the fonts on a system
+and an OpenGL or Mesa application. It uses the excellent FreeType
+library to read font faces from their files and renders text strings
+as OpenGL primitives. 
+
+%package devel
+Summary:       Header files for OGLFT
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+
+%description devel
+Header files for OGLFT.
+
+%package static
+Summary:       Static version of OGLFT
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static version of OGLFT.
+
+%prep
+%setup -q -n oglft-%{version}
+
+%build
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%{__libtoolize}
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS ChangeLog NEWS README
+%attr(755,root,root) %{_libdir}/libOGLFT.so.1.*.*
+%attr(755,root,root) %ghost %{_libdir}/libOGLFT.so.1
+
+%files devel
+%defattr(644,root,root,755)
+%doc doc/html
+%{_includedir}/oglft
+%attr(755,root,root) %{_libdir}/libOGLFT.so
+%{_libdir}/libOGLFT.la
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libOGLFT.a
This page took 0.070262 seconds and 4 git commands to generate.