source-highlight-qt/source-highlight-qt.spec

72 lines
2.1 KiB
RPMSpec

Summary: Library for performing syntax highlighting in Qt documents
Name: source-highlight-qt
Version: 0.2.3
Release: 2%{?dist}
License: GPLv3
URL: http://srchiliteqt.sourceforge.net/
Source0: http://downloads.sourceforge.net/project/srchiliteqt/source-highlight-qt/source-highlight-qt-%{version}.tar.gz
BuildRequires: boost-devel
BuildRequires: source-highlight-devel
BuildRequires: qt-devel
%description
Source-highlight-qt is a library for performing syntax highlighting in
Qt documents by relying on GNU Source-Highlight library.
Although the use of GNU Source-highlight library is pretty hidden by
this library, so the programmer must not need the details of GNU
Source-highlight library, yet, some general notions of GNU
Source-highlight might be useful.
%package devel
Summary: Header files, libraries and development documentation for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
This package contains the header files, static libraries and
development documentation for source-highlight-qt. If you like to
develop programs using source-highlight-qt, you will need to install
source-highlight-qt-devel.
%prep
%setup -q
%build
%configure --with-qt=%{_libdir}/qt4/bin
make %{?_smp_mflags}
%install
%make_install
find %{buildroot} -name \*.a -delete
find %{buildroot} -name \*.la -delete
mv %{buildroot}/usr/share/doc/source-highlight-qt/examples __examples
mv %{buildroot}/usr/share/doc/source-highlight-qt/source-highlight-qt.html .
rm -rf %{buildroot}/usr/share/{doc,info}
%check
pushd lib/tests
make check
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%doc AUTHORS COPYING ChangeLog NEWS THANKS TODO.txt
%{_libdir}/libsource-highlight-qt4.so.3*
%files devel
%doc __examples/* source-highlight-qt.html
%{_includedir}/srchiliteqt
%{_libdir}/libsource-highlight-qt4.so
%{_libdir}/pkgconfig/source-highlight-qt4.pc
%changelog
* Fri Mar 01 2013 Terje Rosten <terje.rosten@ntnu.no> - 0.2.3-2
- enable tests
- remove buildroot cleaning
* Mon Feb 25 2013 Terje Rosten <terje.rosten@ntnu.no> - 0.2.3-1
- initial package